我正在尝试开始使用 Dart,但无法弄清楚如何读取 shell 参数。据我从其他问题中可以看出,这应该有效:
#!/usr/bin/env /path/to/dart/dart-sdk/bin/dart
main()
{
print(new Options().arguments);
}
但我收到错误“未加载类型'选项'”:
Unhandled exception:
'file:///path/to/script.dart': Error: line 5 pos 13: type 'Options' is not loaded
print(new Options().arguments);
^
malformed type used.
#0 main (file:///path/to/script.dart:5:13)
我究竟做错了什么?
我在 Mac OS X 10.8 上使用当前稳定版本的 dart(今天下载)。