feat: some expr with precendence parsing

This commit is contained in:
rvcas
2022-09-26 11:14:42 -04:00
parent c08f6a8454
commit 4f26957806
2 changed files with 78 additions and 8 deletions

View File

@@ -81,6 +81,9 @@ pub enum UplcCommand {
/// Print output instead of saving to file
#[clap(short, long)]
print: bool,
#[clap(short, long)]
cbor_hex: bool,
},
/// Format an Untyped Plutus Core program
Fmt {
@@ -103,6 +106,9 @@ pub enum UplcCommand {
/// Print output instead of saving to file
#[clap(short, long)]
print: bool,
#[clap(short, long)]
cbor_hex: bool,
},
}