Initial commit

This commit is contained in:
toly
2023-04-16 10:28:45 +08:00
commit a1465d4a52
139 changed files with 5073 additions and 0 deletions

14
test/grammer/oop/01.dart Normal file
View File

@@ -0,0 +1,14 @@
class Human {
String name = '';
double weight = 0;
double height = 0;
}
void main(){
Human toly = Human();
toly.name = "捷特";
toly.weight = 70;
toly.height = 180;
print("Human: name{${toly.name},weight:${toly.weight}kg,height:${toly.height}cm}");
}