Initial commit

This commit is contained in:
johan0A 2024-09-19 18:05:42 +02:00 committed by GitHub
commit 0d0863ff0c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 857 additions and 0 deletions

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

@ -0,0 +1,22 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "zig-debug",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/zig-out/bin/paint-program",
"args": [],
"cwd": "${workspaceFolder}",
"preLaunchTask": "zig-debug-build",
"stopOnEntry": false,
"env": {},
"initCommands": [
"command script import ${workspaceFolder}/.vscode/lldb_pretty_printers.py",
"type category enable zig",
"type category enable zig.std",
"type category enable zig.stage2"
]
},
]
}