我是咖啡脚本的新手..这是我的第一个脚本并且无法正常工作..
html
head title='hello world'
css:
h1{
color: blue;
}
coffee:
number = 42
opposite = true
saybye = () ->
alert 'hello'+number
''
body
h1
|hello world
input type="button" onclick="saybye()" value="sayhello"
scss:
$blue: #3bbfce;
h2{
color: $blue;
}
它说没有找到saybye,我应该总是以一些会得到回报的表达结束。有没有办法停止回电?