Added Square and Equilateral Triangle classes

This commit is contained in:
Tony Bark 2026-04-17 16:51:35 -04:00
parent 1c40a688e4
commit 53ba21d774
9 changed files with 154 additions and 45 deletions

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

@ -0,0 +1,20 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "swift: Build swiftlyfox",
"type": "shell",
"command": "swift",
"args": [
"build",
"--swift-sdk",
"swift-6.3.1-RELEASE_wasm",
"--product",
"swiftlyfox"
],
"group": "build",
"problemMatcher": [],
"detail": "Custom build for WASM target"
}
]
}