Skip to content

Newsletter 11: Add section on Gamelisp #194

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Jul 6, 2020
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions content/posts/newsletter-011/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,26 @@ Their [June updates][mun-june] include:
[mun-release]: https://mun-lang.org/blog/2020/05/16/release-mun-v0-2-0
[mun-june]: https://mun-lang.org/blog/2020/06/30/this-month-june

### [GameLisp]

GameLisp (glisp) is a scripting language built for and in Rust and utilizes
syntax from the LISP family of programming langauges. It provides a fast and
efficient garbage collector that runs every frame instead of freezing a thread.

GameLisp also provides [a playground][glisp-playground] to experiment with
different projects. A reference guide is also [available][glisp-reference] as
well as [API documentation][glisp-docsrs] for integration into Rust.

The crate has had its [initial release][glisp-cratesio], a roadmap and ways
to contribute are available on GameLisp's [Github Respository][glisp-github].

[gamelisp]: https://gamelisp.rs/
[glisp-playground]: https://gamelisp.rs/playground/
[glisp-reference]: https://gamelisp.rs/reference/
[glisp-docsrs]: https://docs.rs/glsp/0.1.0/glsp/
[glisp-cratesio]: https://crates.io/crates/glsp/
[glisp-github]: https://github.com/fleabitdev/glsp/

### [yaks]

[yaks] is a minimalistic framework for automatic multithreading
Expand Down