Skip to content

Instantly share code, notes, and snippets.

@giri021
Created October 3, 2023 01:54
Show Gist options
  • Save giri021/ef3dd3268c3d1bfff6d9921580c33e09 to your computer and use it in GitHub Desktop.
Save giri021/ef3dd3268c3d1bfff6d9921580c33e09 to your computer and use it in GitHub Desktop.
flying-jungle-9676
void main() {
var mapping = {'id': 1,'name':'Dart'};
add(3,4);
for( var i = 1 ; i <= 10; i++ ) {
if(i%2==0) {
print(mapping);
}
}
}
void add(int a,int b) {
int c;
c = a+b;
print(c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment