Created with <3 with dartpad.dev.
Created
October 3, 2023 01:54
-
-
Save giri021/ef3dd3268c3d1bfff6d9921580c33e09 to your computer and use it in GitHub Desktop.
flying-jungle-9676
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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