learn dart with this cheat sheet
this project starts from hello world untill the end of the dart ��
simple example
- hello world in dart
void main() {
// just print it!
print("hello world");
}
- variables in dart
enum os { bigsur, mojave, sierra, catalina }
void main() {
string name = "amir";
int age = 18;
double height = 1.6;
bool male = true;
var field = "programming";
final grade = "collage";
const home = "newyork";
dynamic food = "pasta";
food = "egg";
}
contribute
you can contribute on this project by adding new stuff, editing and other things.
contact
anyway, if you have any question, tell me about it.
- telegram: @blackiq
- telegram: [email protected]
license
this project is licensed under gpl license.
Comments are closed.