Add string concat/compare. Bump to 0.4

This commit is contained in:
Jonathan Turner
2016-08-17 18:33:31 -07:00
parent 7a46c7d9bc
commit 2a28209b38
5 changed files with 23 additions and 10 deletions

View File

@@ -2,3 +2,6 @@ print("hello");
print("this\nis \\ nice");
print("40 hex is \x40");
print("fun with unicode: \u2764 and \U0001F603");
print("foo" + " " + "bar");
print("foo" < "bar");
print("foo" >= "bar");