Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.44 KB

CONTRIBUTING.md

File metadata and controls

32 lines (26 loc) · 1.44 KB

Contributing

Requesting a new language

  1. Open an issue on GitHub
  2. Include the name of the language in the issue title
  3. Include links to any resources you may have found on how to compile that language to WASM
  4. Consider opening a Pull Request adding the language (See "Adding a new language" below)
  5. Thats all! Thanks for contributing! 🙇

Reporting a bug

  1. Open an issue on GitHub
  2. Include the name of the language in the issue title
  3. Include any logs or stacktraces in a Markdown fenced block
  4. Consider opening a Pull Request resolving the issue.
  5. Thats all! Thanks for contributing! 🙇

Adding a new language

  1. First time opening a Pull Request? Checkout this Pull Request guide!
  2. Add a new folder for the language with the following files:
  • hello.{language extension} for example hello.go for Go lang
  • Vagrantfile
  • scripts
  1. Commit changes
  2. Add install and build steps to scripts
  3. Commit changes
  4. Open a Pull Request
  5. Review and updates to Pull Request
  6. PR merged
  7. Thats all! Thanks for Contributing! 🙇