cclang/doc/target/main.bl

16 lines
362 B
Plaintext
Raw Normal View History

use test1 from Tests;
use test2 as test3 from Tests;
lib Main {
class Program {
func Main(args: list): void {
2020-05-25 16:36:44 +02:00
var test_a: test1 = test1();
test_a.dec_vars();
test_a.is_error();
if (!error) {
2020-05-25 16:36:44 +02:00
var test_b: test3 = test3();
test3.continue();
}
}
}
}