X

nscode Cheat Sheet

# Printing
say "Hello world"
say x

# Variables & Arithmetic
let x be 5
let y be x + 10
let z be y * 2

# User Input
ask "Name"
ask "Age"
let nextYear be Age + 1

# Comments
# This is a comment
    
Submit