Scripts are created in a style similar to C, with script blocks denoted by braces. Unlike C, there is no character to mark the end of a line - each script command is simply on its own line.
if (someVariable = 3) {
msg ("Some text")
}
Comments are denoted by //
// this line will be ignored