1
0
Fork 0
forked from AbleOS/ableos
ableos-idl/sysdata/test-programs/main.rhai

13 lines
237 B
Plaintext
Raw Normal View History

2023-11-11 14:45:45 +00:00
import "sysdata/test-programs/hblib/std" as std;
fn main(){
std::Error(":+)");
std::Warn("Your mom fell in a well!");
std::Info("Hello, world!");
std::Debug("XYZ");
std::Trace("Trace Deez");
2023-11-20 09:13:18 +00:00
tx();
}
main();