Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 554 Bytes

LIBRARIES.md

File metadata and controls

17 lines (13 loc) · 554 Bytes

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)