forked from AbleOS/holey-bytes
13 lines
227 B
Plaintext
13 lines
227 B
Plaintext
|
import "hbasm/examples/ableos/std" as std;
|
||
|
|
||
|
fn main(){
|
||
|
std::Error(":+)");
|
||
|
std::Warn("Your mom fell in a well!");
|
||
|
std::Info("Hello, world!");
|
||
|
std::Debug("ABC");
|
||
|
std::Trace("Trace Deez");
|
||
|
|
||
|
tx();
|
||
|
}
|
||
|
|
||
|
main();
|