2023-02-26 01:07

This commit is contained in:
2023-02-26 01:07:56 +09:00
commit 97b4af1d75
9 changed files with 71 additions and 0 deletions

6
hello/bin/hello.dart Normal file
View File

@@ -0,0 +1,6 @@
void main(List<String> arguments) {
int number;
number = 34;
print('number = $number'); // null
}