Chapter 7

This commit is contained in:
Moritz Gmeiner 2023-01-20 16:10:03 +01:00
commit 42dbe531ad
15 changed files with 1112 additions and 0 deletions

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

@ -0,0 +1,26 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'rlox2'",
"cargo": {
"args": [
"build",
"--bin=rlox2",
"--package=rlox2"
],
"filter": {
"name": "rlox2",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}