cclang/cc_code_preview/Preview/variables.ccl

6 lines
186 B
Plaintext
Raw Normal View History

2021-08-02 15:58:05 +02:00
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);
}