rsm.build
```yml
verbose: 'normal'
constants: - text: Hello, world! - text-br: Olá, Mundo! tasks: - all: - "exec: echo $(text)" - "exec: echo $(text-br)" - test: - "exec: echo $(text)" ```
```toml
[constants] text = "Hello, world!" text-br = "Olá, Mundo!" [tasks] [tasks.main] run = [ "exec: echo $(text-br)", "exec: echo $(text)", "task: test" ] [tasks.test] run = [ 'exec: echo $(text)' ] ```
cargo run
or cargo r --release
cargo install --path .