Compare commits
3 commits
49d78d4402
...
4c2c8bebd3
Author | SHA1 | Date | |
---|---|---|---|
4c2c8bebd3 | |||
0e7b0fb696 | |||
d0f3dc88e1 |
3 changed files with 24 additions and 0 deletions
7
Cargo.lock
generated
Normal file
7
Cargo.lock
generated
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# This file is automatically @generated by Cargo.
|
||||||
|
# It is not intended for manual editing.
|
||||||
|
version = 3
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "rash"
|
||||||
|
version = "0.1.0"
|
16
doc/schema.d2
Normal file
16
doc/schema.d2
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
file: Input file {
|
||||||
|
shape: document
|
||||||
|
comm: Command lines { style.multiple: true }
|
||||||
|
}
|
||||||
|
comm: Command line
|
||||||
|
|
||||||
|
rash {
|
||||||
|
parse: Parse
|
||||||
|
exec: Execute
|
||||||
|
|
||||||
|
parse -> exec
|
||||||
|
}
|
||||||
|
|
||||||
|
rash -> file: read
|
||||||
|
file.comm -> rash.parse
|
||||||
|
comm -> rash.parse
|
1
src/main.rs
Normal file
1
src/main.rs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
fn main() {}
|
Loading…
Reference in a new issue