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
+10
View File
@@ -0,0 +1,10 @@
import Testing
@testable import SwiftRunnerTesting
@Test func expectWorld() async throws {
#expect(sayHello() == "Hello, World!")
}
@Test func expectAlex() async throws {
#expect(sayHello(to: "Alex") == "Hello, Alex!")
}