ZenScript main repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

helloworld.zs 210B

123456789101112
  1. println("Hello \© world!");
  2. println(5);
  3. println(2 + 5);
  4. println(1 - 2);
  5. println(1 + 3 as long);
  6. println(<hello world in bracket parser>);
  7. var a = null as string?;
  8. if (a == null)
  9. println("A is null!");