Skip to content

Instantly share code, notes, and snippets.

View GenaroGonzalezz's full-sized avatar

Genaro González GenaroGonzalezz

View GitHub Profile
@Klerith
Klerith / flutter-instalaciones.md
Last active May 30, 2024 00:39
Instalaciones del curso de Flutter - Móvil de cero a experto
@aruld
aruld / foreachlistset.dart
Created October 19, 2011 18:30
Dart forEach() on a List/Set
main() {
List<String> list = new List<String>();
list.add('one');
list.add('two');
list.add('twelve');
list.forEach((element) => print(element));
Set<String> set = Set.from(list);
set.forEach((element) => print(element));
}