Skip to content

Instantly share code, notes, and snippets.

@Vanethos
Created January 13, 2020 08:19
Show Gist options
  • Save Vanethos/c838c9115c106186b2bd647204ab90b8 to your computer and use it in GitHub Desktop.
Save Vanethos/c838c9115c106186b2bd647204ab90b8 to your computer and use it in GitHub Desktop.
// Run the app like this: dart args.dart 1 test
void main(List<String> arguments) {
print(arguments);
assert(arguments.length == 2);
assert(int.parse(arguments[0]) == 1);
assert(arguments[1] == 'test');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment