Input/Output
In V#, you can use io.print
to display output and io.input
to get user input.
io.println("How old are you?")
set age = Convert.ToInt(io.input())
if(age >= 18){
io.println("You are an adult")
} else {
io.println("You are still a child")
}