OLD | NEW |
1 <!--- | 1 <!--- |
2 Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 2 Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file |
3 for details. All rights reserved. Use of this source code is governed by a | 3 for details. All rights reserved. Use of this source code is governed by a |
4 BSD-style license that can be found in the LICENSE.md file. | 4 BSD-style license that can be found in the LICENSE.md file. |
5 --> | 5 --> |
6 | 6 |
7 # Design for Fletch Command Line Interface commands | 7 # Design for Fletch Command Line Interface commands |
8 | 8 |
9 The overall structure of commands in Fletch should follow: | 9 The overall structure of commands in Fletch should follow: |
10 | 10 |
11 ``` | 11 ``` |
12 fletch verb [zero or more verbs or object-nouns] | 12 fletch verb [zero or more verbs or object-nouns] |
(...skipping 36 matching lines...) Loading... |
49 | 49 |
50 ``` | 50 ``` |
51 fletch help debug | 51 fletch help debug |
52 ``` | 52 ``` |
53 and | 53 and |
54 ``` | 54 ``` |
55 fletch debug help | 55 fletch debug help |
56 ``` | 56 ``` |
57 | 57 |
58 Should display the same text. | 58 Should display the same text. |
OLD | NEW |