Created
August 3, 2018 16:03
-
-
Save chalin/f64e963cb5f894e2146c2b28d5efa4ed to your computer and use it in GitHub Desktop.
Sound Dart example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void printInts(List<int> a) => print(a); | |
void main() { | |
var list = <int>[]; // Removing <int> results in a type error | |
list.add(1); | |
list.add(2); | |
printInts(list); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment