This commit is contained in:
Sven Heidemann
2020-05-25 21:05:52 +02:00
parent b01204fdd4
commit 9b25f36eb3
6 changed files with 32 additions and 7 deletions

View File

@@ -13,8 +13,8 @@ lib Main {
var testEmpty: emptyType = empty;
var testNum: number = 3.0;
var testBool_2: bool = 3 > 1;
var testTest: Test = Test();
testTest.outp();
# var testTest: Test = Test();
# testTest.outp();
output('Hello World');
output(66);
output(3 + 3);
@@ -28,9 +28,9 @@ lib Main {
test1234(range(0, 10));
}
# public func test1234(param: list): list {
public func test1234(): void
{
public func test1234(param: list): list {
# public func test1234(): void
# {
/*for i in range(0, length(param)) {
output(i);
}*/