$table = null add_card = (text, x, y) -> $table.append $ "
#{text}
" init = -> $table = $ '#table' add_card "card 1", 100, 20 add_card "two", 250, 20 add_card "third card", 290, 50 $ -> init()