We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fc6a52 commit 6628281Copy full SHA for 6628281
README.markdown
@@ -235,7 +235,7 @@ class BoardLocation {
235
self.column = column
236
237
let closure = {
238
- println(self.row)
+ print(self.row)
239
}
240
241
@@ -496,19 +496,19 @@ for _ in 0..<3 {
496
497
498
for (index, person) in attendeeList.enumerate() {
499
- println("\(person) is at position #\(index)")
+ print("\(person) is at position #\(index)")
500
501
```
502
503
**Not Preferred:**
504
```swift
505
for var i = 0; i < 3; i++ {
506
- println("Hello three times")
+ print("Hello three times")
507
508
509
for var i = 0; i < attendeeList.count; i++ {
510
let person = attendeeList[i]
511
- println("\(person) is at position #\(i)")
+ print("\(person) is at position #\(i)")
512
513
514
0 commit comments