presentations/highlight-js/test/detect/hsp/default.txt

24 lines
297 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
#include "foo.hsp"
// line comment
message = "Hello, World!"
message2 = {"Multi
line
string"}
num = 0
mes message
input num : button "sqrt", *label
stop
*label
/*
block comment
*/
if(num >= 0) {
dialog "sqrt(" + num + ") = " + sqrt(num)
} else {
dialog "error", 1
}
stop