Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created August 23, 2015 02:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/582d9987a2b922583614 to your computer and use it in GitHub Desktop.
Save chuck0523/582d9987a2b922583614 to your computer and use it in GitHub Desktop.
# String
# 式展開
# JSなら→alert "score : "+ scoreとするところを、
# coffeeならダブルクオートの中で展開できる。
score = 80
console.log "score: #{score}" # score : 80
console.log "score: #{score * 10}" # score : 800
# 複数行
msg = "this
is
a very
long
msg"
# 改行は単なるスペースに変換される
# heredoc
html = """
<div id="main">
hello
</div>
"""
# ダブルクオート*3の中の改行は\nに変換される
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment