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.

moreHellos.zs 178B

12345678910111213141516
  1. println("Hello world!");
  2. println(1 as string);
  3. var test = "test";
  4. println(test);
  5. test = "testMore";
  6. println(test);
  7. test = 13;
  8. println(test);
  9. val test2 = 14;
  10. println(test2);