This commit is contained in:
2025-06-24 18:35:50 +04:00
commit 5ff911f351
10 changed files with 737 additions and 0 deletions

13
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,13 @@
{
"configurations": [
{
"name": "Launch",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/bin/test",
"args": ["-re", "hello, world"],
"cwd": "${workspaceFolder}",
"stopOnEntry": false
}
]
}