int a = 1; // 整数型 float f = 2.3; // 浮動小数点数型 complex c = 4.0 + 5.0*I; // 複素数型(Iは虚数単位定数) ※Vnanoでは未対応 string s = "Hello"; // 文字列型 bool b = true; // 論理型 print(a, f, c, s, b);