A rewrite of liracer, the free and open source code racing game.
The easiest way to contribute is to submit a code snippet. The snippets are stored in snippets/. They need to fullfil the following requirements. Please ensure that these requirements are met before submitting a pull request.
- Use literal tabs(not spaces) for indention.
- Have maximum 79 characters per line.
- Have no trailing newline.
- Be idiomatic and well written.
- Be moderately short.
- Be interesting. The code should either display the syntax of a language with a familiar, easily digestible example such as fibonacci.cpp, hello_world.hs or fibonacci_sequence.rb, or be a real-life example.
- Be valid code. The code does not need to be self sufficient, but no syntax errors should be present.
- Be legitimate contributions(not spam garbage).
For a start you can translate an already existing quote to a new language.
# Backend
npm install &&
npm run dev
# Frontend
cd front &&
npm install &&
npm start