8.15
4.1 kernel of ming lang
4.1.1 ming/kenel
(require ming/kernel) | package: ming |
The kernel methods and syntaxes of Ming.
syntax
( exprs ...)
syntax
( arg1 exprs ...)
syntax
( arg1 arg2 exprs ...)
syntax
( arg1 arg2 arg3 exprs ...)
🐘 入
Same as:
Examples:
> (( ( 1 2 3))) '(1 2 3)
> (( x ( 1 2 x)) 3) '(1 2 3)
> (( x y ( 1 2 x y)) 3 4) '(1 2 3 4)
> (( x y z ( 1 2 x y z)) 3 4 5) '(1 2 3 4 5)
> (( x #:arg y ( 1 2 x y)) 3 #:arg 4) '(1 2 3 4)
> (( 10)) 10
> (( x x) 10) 10
syntax
( a b c)
🐘 丫,、