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); | |
| } | |
| } | |
| } |
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
| main(List<String> args) { | |
| checkRain(); | |
| } | |
| checkRain() { | |
| bool check; | |
| int val1 = 12; | |
| int val2 = 9; | |
| // Assigning variable check |
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
| tambah ( double angka1, double angka2){ | |
| } |