This commit is contained in:
2025-12-01 14:04:11 +00:00
parent d730d3c444
commit 358249e78a
17 changed files with 6079 additions and 0 deletions

16
2025/go/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,16 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${fileDirname}",
"args": ["1"]
}
]
}