ara_source 0.1.0

Ara source library for Ara Programming Language
Documentation
default:
  @just --list

# build the library
build:
    cargo build

# detect linting problems.
lint:
    cargo fmt --all -- --check
    cargo clippy

# fix linting problems.
fix:
    cargo fmt
    cargo clippy --fix --allow-dirty --allow-staged

test:
    cargo test --all