Initial commit

This commit is contained in:
2026-08-24 06:34:01 -07:00
commit 9f22286eef
6 changed files with 273 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"configurations": [
{
"type": "swift",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder:SwiftRunnerTesting}",
"name": "Debug SwiftRunnerTesting",
"target": "SwiftRunnerTesting",
"configuration": "debug",
"preLaunchTask": "swift: Build Debug SwiftRunnerTesting"
},
{
"type": "swift",
"request": "launch",
"args": [],
"cwd": "${workspaceFolder:SwiftRunnerTesting}",
"name": "Release SwiftRunnerTesting",
"target": "SwiftRunnerTesting",
"configuration": "release",
"preLaunchTask": "swift: Build Release SwiftRunnerTesting"
}
]
}