12 lines
228 B
Plaintext
12 lines
228 B
Plaintext
|
lib Tests {
|
||
|
export class test2 {
|
||
|
string_a = string1();
|
||
|
export func continue() {
|
||
|
input(string_a.string1 + ': ');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class strings {
|
||
|
public string1 = "hello world";
|
||
|
}
|
||
|
}
|