Improved workspace structure

This commit is contained in:
2021-08-02 15:58:05 +02:00
parent 1577c78c51
commit a97de91fc4
27 changed files with 222 additions and 20 deletions

View File

@@ -0,0 +1,13 @@
public lib Preview.Classes {
public class Test {
private var _name: string;
public constructor(name: string) {
this._name = name;
}
public getName(): string {
return this._name;
}
}
}

View File

@@ -0,0 +1,5 @@
public lib Preview.Functions {
public func isTrue(value: bool): bool {
return value;
}
}

View File

@@ -0,0 +1,8 @@
public lib Preview.Variables {
public var str: string = "Hello World";
public var test: bool = false;
public var test2: Test = empty;
public var test3: Test = Test(34);
}