forked from AbleOS/ableos
15 lines
252 B
Plaintext
15 lines
252 B
Plaintext
import "repbuild/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::open("/file.hbf");
|
|
|
|
tx();
|
|
}
|
|
|
|
main(); |