// This is a single line comment forge hello: rune = "Hello"; forge morph world: rune = "World"; world += " from AbySS!"; unveil(hello," ",world,"\n"); /* This is a block comment */ unveil("Calc test"); unveil("1 + 2 + 3 = ",1+2+3); unveil("1 + 2 * 3 = ", 1 + 2 * 3); unveil("1 - 2 - 3 = ", 1 - 2 - 3); unveil("8 - 6 / 3 = ", 8 - 6 / 3); unveil("3 * (2 + 3) = ", 3 * (2 + 3)); unveil("3 ^ (2 + 3) = ", 3 ^ (2 + 3)); unveil("(2.0 + 3.11) ** (-2.0) = ", (2.0 + 3.11) ** (-2.0));