Initial source commit 🎉

This commit is contained in:
Tony Bark 2026-01-26 10:34:56 -05:00
commit dad5a460c3
30 changed files with 3167 additions and 0 deletions

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

@ -0,0 +1,17 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "mdbook: serve",
"type": "shell",
"command": "mdbook serve"
},
{
"label": "mdbook: clean",
"type": "shell",
"command": "mdbook clean"
}
]
}