Carp/LIBRARIES.md
Erik Svedäng f4d5adebb1 fix
2016-04-27 21:14:56 +02:00

554 B

Core Libraries

See lisp/core.carp, proper docs are coming soon!

The C standard library (wrapped)

See lisp/builtins.carp

OpenGL

See lisp/gl.carp

The '*' macros

Since the functions in Carp can't accept a variable number of args there are a bunch of helper macros that allows you to circumvent this limitation. Here are some examples:

(str* "This string " "and this string, here's a number " 123 ", etc...")
(println* "X = " x ", Y = " y)
(and* true false false true false)