X-Git-Url: http://svarog.pmf.uns.ac.rs/gitweb/?p=mjc2wsl.git;a=blobdiff_plain;f=samples%2Fchrtest.mj;h=ddc0b8bfe6ca839f66b1aa43ecb3e3ba4dd57051;hp=39a15317575a938656f3101725a9a02f9bd02e72;hb=c32b5ce57ed98cda547444ba0c37293fe7a4bd9c;hpb=a24993cfe39a1fd5b7db6e2ffe9f656955fb73bd diff --git a/samples/chrtest.mj b/samples/chrtest.mj index 39a1531..ddc0b8b 100644 --- a/samples/chrtest.mj +++ b/samples/chrtest.mj @@ -2,8 +2,10 @@ program P { void main() { - print(chr(10),15); + print(chr(65),5); + print('A',5); + print(chr(10),2); print(ord('a'),5); - print(len(null)); + print('a',5); } }