rhai/scripts/string.rhai

7 lines
190 B
Plaintext
Raw Normal View History

print("hello");
print("this\nis \\ nice");
print("40 hex is \x40");
print("fun with unicode: \u2764 and \U0001F603");
2016-08-17 18:33:31 -07:00
print("foo" + " " + "bar");
print("foo" < "bar");
print("foo" >= "bar");