int a = 1; // Integer float f = 2.3; // Floating-point complex c = 4.0 + 5.0*I; // Complex number (I is the imaginary unit) - not available in Vnano string s = "Hello"; // String bool b = true; // Boolean print(a, f, c, s, b);