This is an old revision of the document!
= Heading One Eight =
/** * The HelloWorldApp class implements an application that * simply displays "Hello World!" to the standard output. */ class HelloWorldApp { public static void main(String[] args) { System.out.println("Hello World!"); //Display the string. } }
Arguments | Result | Notation |
---|---|---|
-- |
Defines an input variable. Input variables are created at script start and assigned either the default value, or a value specified in the editor.
$amtToEmit:10 $interval:15 CurrentCoords <-amtToEmit SetCreeper <-interval Delay
<!โ Start of Page โ>
Arguments | Result | Notation |
---|---|---|
String, item | s1 n1 โ |
Pops a name of a variable and an item from the stack and stores the item in the variable.
# Build a string by concatenating "xy" and "z". # Store the number 123 in the variable named "xyz". "xy" "z" concat 123 ->! <-xyz trace