This commit is contained in:
Sebastian Hugentobler 2025-05-28 09:05:18 +02:00
parent 6e02a1a644
commit 463e4abd30
Signed by: shu
SSH key fingerprint: SHA256:ppcx6MlixdNZd5EUM1nkHOKoyQYoJwzuQKXM6J/t66M
13 changed files with 172 additions and 26 deletions

30
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,30 @@
{
"$schema": "https://raw.githubusercontent.com/mfussenegger/dapconfig-schema/master/dapconfig-schema.json",
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Run Lox Interpreter",
"cargo": {
"args": [
"build",
"--package",
"rox",
"--message-format",
"json"
]
},
"program": "${workspaceFolder}/target/debug/rox",
"args": [
"run",
"-s",
"./lox/simple_for.lox"
],
"env": {
"RUST_LOG": "debug"
},
"cwd": "${workspaceFolder}"
}
]
}