Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 557 Bytes

CONTRIBUTING.md

File metadata and controls

31 lines (22 loc) · 557 Bytes

Lice contributing guides

Pull requests are welcomed, but please follow our code style guide below:

Code style

compiler

  1. Use actual tab character instead of spaces
  2. Please use Java or Kotlin as a development language
  3. Functional collection APIs are prefered.
  4. Results of functions should be lazy evaluation.

Lice language

  1. Use symbols like -\>, ? to represent to, orNot. It's clearer.
  2. Use Lisp-style function names.

Example:

; good
(int->str 1)
; bad
(intToStr 1)

; good
(null? ())
; bad
(nullOrNot ())