Learn V# - Variables

Variables

In V#, you can declare a variable using the set keyword.

Integer Example

set age = 0
set a = 5 * 5 - 3 + 67

String Example

set name = "my name"
set name2 = name + name

Float Example

set age = 0.34 * 3.8