Compare commits

..

No commits in common. "1da57177dfbaf30ceedc8afb5337d252d19fa495" and "070957be5af501cd955033962db2159c2ac2c873" have entirely different histories.

2 changed files with 3 additions and 13 deletions

View file

@ -10,14 +10,6 @@ env:
CARGO_TERM_COLOR: always CARGO_TERM_COLOR: always
jobs: jobs:
formatting:
name: hem - Build & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: https://github.com/dtolnay/rust-toolchain@1.88
- run: cargo fmt --check
build_and_test: build_and_test:
name: hem - Build & Test name: hem - Build & Test
runs-on: ubuntu-latest runs-on: ubuntu-latest

View file

@ -1,5 +1,3 @@
#![expect(dead_code)]
use clap::Parser; use clap::Parser;
mod cli; mod cli;
@ -7,10 +5,10 @@ mod expr;
fn main() -> miette::Result<()> { fn main() -> miette::Result<()> {
let args = cli::Args::parse(); let args = cli::Args::parse();
let _input_delim = args.delimiter(); let input_delim = args.delimiter();
let _input = args.input(); let input = args.input();
let _expression = expr::parse(&args.expression)?; let expression = expr::parse(&args.expression)?;
Ok(()) Ok(())
} }