The Dart VM appears to support a shebang line (the version I'm using
is Dart SDK version 10095) e.g.
$ cat hello.dart
#!/home/srackham/local/bin/dart/dart-sdk/bin/dart
void main() {
print("Hello World!");
}
$ ./hello.dart
Hello World!
It's a great feature but I haven't seen it documented anywhere so my
question is is it here to stay?
Cheers, Stuart