2 unstable releases

0.2.0 Jan 2, 2021
0.1.0 Jun 11, 2020

#575 in Programming languages

Download history 4/week @ 2024-02-19 27/week @ 2024-02-26 6/week @ 2024-03-04 7/week @ 2024-03-11 2/week @ 2024-03-25 52/week @ 2024-04-01

62 downloads per month

MIT/Apache

1MB
28K SLoC

The GameLisp scripting language.


lib.rs:

The GameLisp scripting language.

For a guided tour of the Rust API, see Section 2 of the Reference Manual.

The prelude.

Due to a limitation in Rust's name lookup, the prelude currently imports any functions which share their name with a macro. For example, it imports both the macro arr! and the function glsp::arr.

This is unintentional, and it may change in the future. When using the prelude, macros can be invoked without their prefix, but functions should still be invoked with their glsp:: prefix.

Dependencies