From: Doni Pracner Date: Tue, 27 May 2014 22:24:29 +0000 (+0200) Subject: samples - chrtest updated a bit X-Git-Tag: v0.1.6~2 X-Git-Url: http://svarog.pmf.uns.ac.rs/gitweb/?p=mjc2wsl.git;a=commitdiff_plain;h=debf9c0c5385f9e442550a841ecb3523ed0a360b;ds=sidebyside samples - chrtest updated a bit --- diff --git a/samples/chrtest.mj b/samples/chrtest.mj index 71b079b..ddc0b8b 100644 --- a/samples/chrtest.mj +++ b/samples/chrtest.mj @@ -2,7 +2,10 @@ program P { void main() { - print(chr(65),15); + print(chr(65),5); + print('A',5); + print(chr(10),2); print(ord('a'),5); + print('a',5); } }