Last active
August 29, 2015 14:04
-
-
Save akanehara/b06bba967db5cb2e450b to your computer and use it in GitHub Desktop.
var がないことによる問題
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# var がないことによる問題 | |
# 関数sum内の x がローカル変数であることをいつも保証できない | |
# このコメントアウトを外すと sum 内の x はローカル変数でなくなる | |
# x = 100 | |
sum = (n) -> | |
x = 0 | |
for i in [1..n] | |
x += i | |
sum 10 | |
alert x | |
# 変数のスコープが広い側でまとまるこの仕様は、 | |
# とくに変数の再代入がデフォルトで可能な言語では | |
# 意図しない破壊が起こりうる |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment