cclang/doc/target/test.bl
2020-05-25 22:04:56 +02:00

35 lines
877 B
Plaintext

lib Tests
{
/*
declaration of some tests
*/
public class test1
{
public var test_string: string = 'Hello';
public var test_string_2: string = "Hello World";
public var test_num: num = 1;
public var test_num_2: num = 1.0;
public var test_num_3: num = this.test_num + this.test_num_2;
public func dec_vars(): void
{
var test_bool: bool = true;
var test_bool_2: bool = false;
var test_bool_3: bool = test_bool != test_bool_2; # true
}
public is_error(): bool
{
if (error != empty)
{
output(error.code + ' ' + error.message);
return true;
}
else
{
output('continue');
return false;
}
}
}
}