Skip to content

Instantly share code, notes, and snippets.

@wheel1992
Created July 16, 2020 23:20
Show Gist options
  • Save wheel1992/c61ed6994587e7068f601ac12ceee7c5 to your computer and use it in GitHub Desktop.
Save wheel1992/c61ed6994587e7068f601ac12ceee7c5 to your computer and use it in GitHub Desktop.
void main() {
print('QUESTION 3');
String _result = "";
const _data = ["f", "u", "n"];
for(var i = 0; i < _data.length; i++) {
_result += _data[i] * (i + 1);
}
print(_result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment