* Ignore sorrounding newlines of a infix operator
[example]
def fizzbuzz(n):
match [n % 3, n % 5]:
[0, 0]: "fizzbuzz"
[0, _]: "fizz"
[_, 0]: "buzz"
_: n
range(1, 31)
|> map(fizzbuzz)
|> pvector()
|> print()
* Add lexical tokens showing command option (--show-tokens)
* Add automatic tests for development of mochi
* Add first Dockerfile
* Clean some source codes and setup scripts