parity of numbers by Kroisse

fn f(i:u8){if i<16{f(i+2);f((i+2)^1)}else{print((i&1).to_str())}}fn main(){f(0)}

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page