Revisions for untitled paste

View the changes made to this paste.

unlisted ⁨1⁩ ⁨file⁩ 2022-03-16 07:50:06 UTC

x.nim

@@ -0,0 +1,9 @@

+const 
+    alphanumerics = "0123456789_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
+proc alpha(n: char) bool = # Invalid indentation here.
+    if n in alphanumerics:
+        return true
+    else:
+        return false
+
+echo alpha(n)
\ No newline at end of file