Compare commits

..

3 commits

Author SHA1 Message Date
4c2c8bebd3 feat(src): add empty main.rs 2024-11-13 14:46:29 +01:00
0e7b0fb696 doc: add schema 2024-11-13 14:45:54 +01:00
d0f3dc88e1 build: add Cargo.lock 2024-11-13 14:45:20 +01:00
3 changed files with 24 additions and 0 deletions

7
Cargo.lock generated Normal file
View 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
View 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
View file

@ -0,0 +1 @@
fn main() {}