Why isn't my code hitting the line that contains the alert
?
window.Game = class Game
constructor: ->
rows: 22
columns: 10
board: []
createBoard: ->
# Some code here...
for x in [0...@columns]
alert("THIS IS HERE")
# More code down here...