Skip to content

Commit d33191e

Browse files
authored
Use print instead of puts in embedded/wasm/mutex.swift
1 parent bf7d5fd commit d33191e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/embedded/wasm/mutex.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ import Synchronization
1010
let m = Mutex(42)
1111

1212
m.withLock {
13-
puts("Hello \($0)") // CHECK: Hello 42
13+
print("Hello \($0)") // CHECK: Hello 42
1414
$0 = 37
1515
}
1616

1717
m.withLock {
18-
puts("Hello \($0)") // CHECK: Hello 37
18+
print("Hello \($0)") // CHECK: Hello 37
1919
}
2020
}
2121
}

0 commit comments

Comments
 (0)