From: Doni Pracner Date: Mon, 13 Jan 2014 19:13:37 +0000 (+0100) Subject: samples - chrtest, removed the null test that is not really related. Also let's print... X-Git-Tag: v0.1.4~26 X-Git-Url: http://svarog.pmf.uns.ac.rs/gitweb/?p=mjc2wsl.git;a=commitdiff_plain;h=f86011522a993fd11b66b83a8cff1648be7581c8;hp=d0dd7fa4071716e15e721edfa09249131934cfda;ds=inline samples - chrtest, removed the null test that is not really related. Also let's print a letter. --- diff --git a/samples/chrtest.mj b/samples/chrtest.mj index 39a1531..71b079b 100644 --- a/samples/chrtest.mj +++ b/samples/chrtest.mj @@ -2,8 +2,7 @@ program P { void main() { - print(chr(10),15); + print(chr(65),15); print(ord('a'),5); - print(len(null)); } }