Example ZenCode scripting engine.
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 136B

1234567
  1. import example.TestClass;
  2. println("Hello world!");
  3. val test = new TestClass("something");
  4. println("Name: " + test.name);
  5. test.dump();