gitweb on Svarog
projekti pod git sistemom za održavanje verzija -- projects under the git version control systemdiff --git a/samples/chrtest.mj b/samples/chrtest.mj
index 39a15317575a938656f3101725a9a02f9bd02e72..ddc0b8bfe6ca839f66b1aa43ecb3e3ba4dd57051 100644 (file)
--- a/samples/chrtest.mj
+++ b/samples/chrtest.mj
{
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);
}
}