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
<?php | |
// cleaning structure from https://gist.github.com/emsifa/23ac71754d3b9c78d273 | |
return [ | |
"subulussalam" => "0627", | |
"kutacane" => "0629", | |
"aceh tenggara" => "0629", | |
"langsa" => "0641", | |
"blang kejeren" => "0642", | |
"gayo lues" => "0642", |
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 student1 = Student(); | |
var dataId = student1.id = 1; | |
var dataName = student1.name = "Tom"; | |
print("The id is ${dataId} and the name is ${dataName}"); | |
print(""); | |
student1.study(); |
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
int below50(int a, int b){ | |
int calc = a + b; | |
return calc; | |
} | |
List somePlanet() => ["Merc", "Ven", "Earth"]; | |
String scoreChecker(int c, int d){ | |