123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import example.TestClass;
- import example.TestInterface;
-
- val instance = new TestClass("Instance");
- println("Name: " + instance.name);
- instance.dump();
- instance.withDefaultParameter("Hello");
- instance.withDefaultParameter("Hello", "moon");
-
- var generated = instance.generate();
- println(generated.getValue());
-
- class TestOperators {
- public (name as string) as void {
- println("MyTestClass: " + name);
- }
-
- //.(key as string) as string
- // => "key " + key;
- }
-
- /*class TestImplementation {
- public implements TestInterface {
- interfaceMethod() => "TestImplementation";
- }
- }*/
-
- val testInstance = new TestOperators();
- //testInstance("something");
-
- something.dump();
-
- val objects = makeArray(5);
- printMany(objects);
-
-
- println(<test string>);
- println(<test string>.name);
- println(<test string>.interfaceMethod());
- //println(new TestImplementation().interfaceMethod());
-
- var diamond = <item:minecraft:diamond>;
- var dirt = <item:minecraft:dirt>;
- addShapedRecipe("TestRecipe", diamond, [[dirt, dirt, dirt],[dirt, dirt, dirt],[dirt, dirt, dirt]]);
-
- var count = 10;
- floatMethod(5f * count);
-
- invokeFunctional(name => "Hello " + name);
-
- //val x = (a as string) => "hello" + a;
- //invokeFunctional(x);
-
- testOptional(value => value == null ? 0 : value.length as int);
|