Revisions for untitled paste

View the changes made to this paste.

unlisted ⁨1⁩ ⁨file⁩ 2022-04-07 13:11:13 UTC

unscientific.nim

@@ -0,0 +1,11 @@

+import times
+var t0 = cpuTime()
+
+var guess = 999999999
+var guessed = 0
+
+while guessed != guess:
+    guessed += 1
+
+echo guess
+echo "Time: ", cpuTime() - t0
\ No newline at end of file