Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/foldfelis/snake.jl

This snake game demonstrates how to build an application using Terming.jl as backend.
https://github.com/foldfelis/snake.jl

snake-game terminal tui

Last synced: about 6 hours ago
JSON representation

This snake game demonstrates how to build an application using Terming.jl as backend.

Awesome Lists containing this project

README

        


Snake Game


# Snake Game

This snake game demonstrates how to build an application using [`Terming.jl`](https://github.com/foldfelis/Terming.jl) as backend.

## Quick start

The package can be installed with the Julia package manager. From the Julia REPL, type ] to enter the Pkg REPL mode and run:

```julia
Pkg> add https://github.com/foldfelis/Snake.jl
```

To start the game, simply execute `main()` function.

```julia
julia> using Snake

julia> main()
```

## How to play

Use `Up`, `Down`, `Right` and `Left` key to control snake movement, press `ESC` to quit.