6 lines
186 B
Plaintext
6 lines
186 B
Plaintext
|
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);
|
||
|
}
|