OLD | NEW |
---|---|
(Empty) | |
1 #!/usr/bin/env python | |
2 # | |
3 # Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | |
4 # for details. All rights reserved. Use of this source code is governed by a | |
5 # BSD-style license that can be found in the LICENSE file. | |
6 # | |
7 # A script which will be invoked from gyp to list the current version of the | |
ahe
2013/02/09 11:54:20
Perhaps my English is flawed but isn't it "print"
Jacob
2013/02/11 01:44:11
I've renamed it to print.
| |
8 # SDK. | |
9 # | |
10 # Usage: list_version | |
11 # | |
12 | |
13 import sys | |
14 import utils | |
15 | |
16 def Main(argv): | |
17 print(utils.GetVersion()) | |
18 | |
19 if __name__ == '__main__': | |
20 sys.exit(Main(sys.argv)) | |
OLD | NEW |