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

17 lines
295 B
Plaintext
Raw Normal View History

2023-11-11 08:45:45 -06: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 03:13:18 -06:00
std::ipc_send(2, 0, 0);
2023-12-01 08:48:57 -06:00
std::ipc_send(3, 0, 0);
tx();
}
2023-12-01 08:48:57 -06:00
main();