Last active
August 17, 2018 05:18
-
-
Save phannmalinka/99555e0b534b7718363c54cd06286b63 to your computer and use it in GitHub Desktop.
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 peoples = [ | |
{ "id": 0, "name": "userA" }, | |
{ "id": 1, "name": "userB" } | |
]; | |
peoples.forEach((person) => print(person)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment