Skip to content

Instantly share code, notes, and snippets.

@bsutton
Created January 13, 2020 19:51
Show Gist options
  • Select an option

  • Save bsutton/d152d17616dde0e3b6ca352ef047c7f2 to your computer and use it in GitHub Desktop.

Select an option

Save bsutton/d152d17616dde0e3b6ca352ef047c7f2 to your computer and use it in GitHub Desktop.
arguments
#! /usr/bin/env dshell
import 'package:dshell/dshell.dart';
void main(List<String> args) {
print('${args.length} were passed');
int index = 0;
for (var arg in args)
{
print('arg $index = $arg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment