1. // Run the app like this: dart args.dart 1 test
    2. void main(List<String> arguments) {
    3. assert(arguments.length == 2);
    4. assert(arguments[1] == 'test');
    5. }