Initial Release

This commit is contained in:
CJ van den Berg 2024-02-08 22:23:40 +01:00
commit 5a00e06cb9
81 changed files with 12670 additions and 0 deletions

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

@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug tests",
"program": "${workspaceFolder}/zig-out/bin/test",
"env": {
"TRACE": "1",
},
"cwd": "${workspaceFolder}",
"preLaunchTask": "build",
}
]
}