dart_in_action/main.dart

6 lines
101 B
Dart

main(List<String> args) {
var intVar = 123;
var strVar = "Hello";
print("$intVar, $strVar");
}