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

15
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "zig-debug-build",
"type": "shell",
"command": "zig build"
},
{
"label": "zig-debug-test-build",
"type": "shell",
"command": "zig build test"
}
]
}