Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/foldfelis/snake.jl
- Owner: foldfelis
- License: mit
- Created: 2021-04-30T03:11:51.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-04-30T17:34:02.000Z (over 3 years ago)
- Last Synced: 2024-11-11T08:51:45.546Z (about 2 months ago)
- Topics: snake-game, terminal, tui
- Language: Julia
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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 Snakejulia> main()
```## How to play
Use `Up`, `Down`, `Right` and `Left` key to control snake movement, press `ESC` to quit.