12 lines
140 B
Makefile
12 lines
140 B
Makefile
default:
|
|
@just hello
|
|
|
|
run:
|
|
@cargo run main
|
|
|
|
bin args='':
|
|
@cargo run --bin {{args}}
|
|
|
|
hello:
|
|
@echo "Hello, world!"
|