holey-bytes/hbasm/examples/ableos/main.rhai

13 lines
227 B
Plaintext
Raw Normal View History

2023-10-28 01:29:02 +00:00
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();