Example ZenCode scripting engine.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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();