# LLGo wrapper of raysan5/raylib ## How to install ### on macOS (Homebrew) ```sh brew install raylib ``` ### on Linux (Debian/Ubuntu) ```sh TODO ``` ## Demos The `_demo` directory contains our demos (it start with `_` to prevent the `go` command from compiling it): - [tetris](_demo/tetris/tetris.go): tetris powered by raylib ### How to run demos To run the demos in directory `_demo`: ```sh cd # eg. cd _demo/tetris llgo run . ```