]> git.lizzy.rs Git - uwu-nolambda.git/blobdiff - test.uwu
Implement nolamda:random module
[uwu-nolambda.git] / test.uwu
index 8e7d32b52455ddce7ee3afb5697b93f9c3916320..6182a05cc3c75bb1878f905c0c5727c7f9e50117 100644 (file)
--- a/test.uwu
+++ b/test.uwu
@@ -8,11 +8,6 @@ main flow:linear(
        )),
 
        io:print(:nil:nil),
-       io:print("--- QUINE ---"),
-       io:print(fs:read("test.uwu")),
-       io:print("--- END OF QUINE ---"),
-       io:print(:nil:nil),
-
        fs:write("test", "hello world"),
        :bool:if(fs:exists("test"),
                io:print("successfully wrote file"),
@@ -27,11 +22,31 @@ main flow:linear(
                io:print("successfully removed file")
        ),
 
+       io:print(:nil:nil),
        io:print(os:time),
        os:sleep(500),
        io:print(os:time),
 
+       io:print(:nil:nil),
        os:execute("echo hello world"),
 
+       io:print(:nil:nil),
+       io:print(:str:cat(
+               "Unseeded dice: ",
+               random:random(1, 6)
+       )),
+
+       random:seed(os:time),
+       io:print(:str:cat(
+               "Seeded dice: ",
+               random:random(1, 6)
+       )),
+
+       io:print(:str:cat(
+               "RAND_MAX = ",
+               random:max
+       )),
+
+       io:print(:nil:nil),
        "success"
 )