initial commit

This commit is contained in:
Fabien Freling 2021-08-09 11:28:04 +02:00
commit 85cd4af924
4 changed files with 75 additions and 0 deletions

9
justfile Normal file
View file

@ -0,0 +1,9 @@
TIC := "tic80 --skip --fs ."
CART := "cart.wren"
run:
{{TIC}} {{CART}}
export:
mkdir --parents build
{{TIC}} --cmd "load {{CART}} & save build/cart.tic & exit"