-
Notifications
You must be signed in to change notification settings - Fork 0
module std
Jan Špaček edited this page Apr 12, 2016
·
1 revision
This module reexports the most frequently used identifiers from other standard modules.
- all identifiers from module std.core
-
neg
from module std.math -
not
from module std.bool -
cons
,cons?
,car
,cdr
,null
from module std.cons -
tuple?
,tuple-0
totuple-4
,tuple-0?
totuple-4?
andget-0
toget-3
from module std.tuple. -
str-cat-0
tostr-cat-4
from module std.string. -
sym-new
,sym?
andsym-get
from module std.sym.
It also defines a function (TRACE!!! what x)
that prints the string what
followed by the value of x
and returns x
. This function is useful for
debugging (its distinct appearance should ensure that no debug prints will be
forgotten in the code).