Skip to content

Instantly share code, notes, and snippets.

View eggysoft's full-sized avatar

Steve eggysoft

View GitHub Profile
@eggysoft
eggysoft / main.dart
Created April 19, 2026 16:56
DART List.indexed
void main() {
final myList = ['one', 'two', 'three', 'four'];
for (var item in myList) {
print(item);
}
for (var item in myList.indexed) {
print(item);
}