chookspeak/examples/main.chsp

20 lines
386 B
Plaintext
Raw Normal View History

2024-12-13 11:01:20 +11:00
egg notepad
init {
sendMessage "Hello there!"
html {
<textarea id="dingus">
}
log "egg initialised"
2024-12-13 13:14:46 +11:00
js {
alert("this is an alert! i repeat - this is an alert!");
}
2024-12-14 20:31:56 +11:00
val dingus = "dongusify"
var dongus = "dingusify"
2024-12-13 11:01:20 +11:00
}
2024-12-13 11:30:47 +11:00
onRecieving egg * * {
2024-12-13 11:01:20 +11:00
messagehtml {
<div style="color: blue">we have successfully dingused</div>
}
}