wrote a simple test for libs

This commit is contained in:
2022-09-18 06:52:00 +01:00
parent 9c790f8cd6
commit 978e7cfac4
4 changed files with 158 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
//test the standard library
{
import standard;
//this depends on external factors, so only check the length
assert clock().length() == 24, "clock() import failed";
}
print "All good";