Skip to content

Instantly share code, notes, and snippets.

@ialameh
Created July 4, 2020 00:24
Show Gist options
  • Save ialameh/aa2569dd6aa6bece5677eefb93e42f65 to your computer and use it in GitHub Desktop.
Save ialameh/aa2569dd6aa6bece5677eefb93e42f65 to your computer and use it in GitHub Desktop.
void main() {
List<int> myint = [];
//myint[0] = 1;
myint.add(1);
print(myint.toString());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment