initial commit

This commit is contained in:
2025-05-25 18:45:24 -04:00
commit b32fdffb93
6 changed files with 99 additions and 0 deletions

7
scripts/run.ps1 Normal file
View File

@ -0,0 +1,7 @@
$path_root = split-path -Path $PSScriptRoot -Parent
$path_build = join-path $path_root 'build'
Push-Location $path_build
$forth = join-path $path_build 'forth.exe'
& $forth
pop-location