Skip to content

Instantly share code, notes, and snippets.

View MoacirSchmidt's full-sized avatar

Moacir Schmidt MoacirSchmidt

View GitHub Profile
@MoacirSchmidt
MoacirSchmidt / main.dart
Last active March 25, 2019 20:45 — forked from devoncarew/main.dart
helloworld
int ordemDeExecucao = 1;
Future<void> printList(List l) async {
print("main.print: ${ordemDeExecucao++}");
print(l);
return 0;
}
void main() {
List l1 = ['a', 'b', 'c'];