From 846c29c6dd69b6ae4109664896a80c621316262b Mon Sep 17 00:00:00 2001 From: dimgigov Date: Fri, 5 Jun 2026 23:06:53 +0300 Subject: [PATCH] examples: add testing example for bux test --- examples/testing.bux | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 examples/testing.bux diff --git a/examples/testing.bux b/examples/testing.bux new file mode 100644 index 0000000..0334287 --- /dev/null +++ b/examples/testing.bux @@ -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; +}