Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created March 13, 2022 14:28
Show Gist options
  • Save Deleplace/a241c3669cc7359e2b7fe12ceb5c708e to your computer and use it in GitHub Desktop.
Save Deleplace/a241c3669cc7359e2b7fe12ceb5c708e to your computer and use it in GitHub Desktop.
Print a comma-separated list of integers
void main() {
var a = [1, 12, 42];
print(a.join(", "));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment