Skip to content

Instantly share code, notes, and snippets.

View steph-crown's full-sized avatar
💻
Open to work

Stephen Emmanuel steph-crown

💻
Open to work
View GitHub Profile
@steph-crown
steph-crown / main.dart
Created October 8, 2020 23:07
Prints all.letters in.my name
void main() {
String name = 'Steph Crown';
for (var j in name) {
print(name);
}
}
@steph-crown
steph-crown / main.dart
Created October 8, 2020 23:00
Loops through a list of numbers and prints out the squares of each numbers
void main() {
List<num> numList = [5,8,9,6,4];
numList.forEach((x) => print (x * x));
}