Skip to content

Latest commit

 

History

History
28 lines (25 loc) · 1.39 KB

README.md

File metadata and controls

28 lines (25 loc) · 1.39 KB

liracer-rewrite

A rewrite of liracer, the free and open source code racing game.

Contribute

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.

Development Environment Setup

# Backend
npm install &&
npm run dev
# Frontend
cd front &&
npm install &&
npm start