AKS test for primes: Difference between revisions

m
m (→‎{{header|Phix}}: added syntax colouring the hard way)
Line 5,456:
const std = @import("std");
const assert = std.debug.assert;
const stdout = std.io.getStdOut().outStreamwriter();
 
pub fn main() !void {
Line 5,545:
The primes upto 50 (via AKS) are: 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47
</pre>
 
=={{header|zkl}}==
{{trans|Python}}
Anonymous user