examples: add testing example for bux test

This commit is contained in:
2026-06-05 23:06:53 +03:00
parent f02b354e9a
commit 846c29c6dd
+9
View File
@@ -0,0 +1,9 @@
// Testing with Std::Test
// Place test files in tests/ directory and run: bux test
import Std::Test::*;
import Std::Io::PrintLine;
func Main() -> int {
PrintLine("Run 'bux test' to execute tests in tests/ directory");
return 0;
}