Skip to content

Instantly share code, notes, and snippets.

@Nymphium
Last active August 29, 2015 14:27
Show Gist options
  • Save Nymphium/d567ea4bcea7a1a7016b to your computer and use it in GitHub Desktop.
Save Nymphium/d567ea4bcea7a1a7016b to your computer and use it in GitHub Desktop.
あるとよさそう

my coding rule in MoonScript

ブロックの先頭は空行いらない

do
  body
  ...

適当に空行

if cond
  body
elseif
  body
else
  body
-- 空行
if cond
  ...
--
f = ->
  ...
--
do
  body
-- 最後も空行

種類で

a = exp
b = exp
c = exp
...
-- 空行
if cond
  body
-- 空行
f = ->
g = ->
h = ->
n = exp
m = exp
-- 空行
f!
g!
h!
-- 空行

no return

f = ->
  3 -- not `return 3`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment