#: Neknaj Language For Programming !include: stdcalc; !using: stdcalc; !replace: pi: 3.1415; #* hey this is a block comment *# !global: 12.str: string; # this is a line comment !fn: 4.int(4.int: max): main { !local: 4.int: z; 0 :> !local: 4.int: x; 0 0 add :> !local: 4.int: y; "hello world" "!\n\"\\" add :> string; 0 :> return; } !fn: 0.void(): ctrl { !ctrl:(x max <) if { y x + :> z; !ctrl:(true) if { null :> return; }; }; !ctrl:(x max <) if { y x + :> z; }; !ctrl:(x max <) if { y x + :> z; } else { y 0 + :> y; }; !ctrl:(x max <) if { y x + :> z; } (x 0 >) elseif { y 0 + :> y; }; !ctrl:(x max <) if { y x + :> z; } (x 0 >) elseif { y 0 + :> y; } else { x :> x; }; }