forked from AbleOS/ableos
20 lines
333 B
Plaintext
20 lines
333 B
Plaintext
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");
|
|
|
|
std::ipc_send(2, 0, 0);
|
|
|
|
std::ipc_make_bound_buffer(64);
|
|
|
|
std::ipc_send(3, 0, 0);
|
|
|
|
tx();
|
|
}
|
|
|
|
main();
|