Skip to content

Commit

Permalink
Update README.md (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
finnvoor authored Aug 9, 2024
1 parent 5a351f1 commit 9b78a00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ import PlaydateKit
final class Game: PlaydateGame {
init() {
System.addCheckmarkMenuItem(title: "check me") { isChecked in
System.log(isChecked ? "checked!" : "not checked")
print(isChecked ? "checked!" : "not checked")
}
}

Expand All @@ -63,7 +63,7 @@ final class Game: PlaydateGame {
}

func gameWillPause() {
System.log("Paused!")
print("Paused!")
}
}
```
Expand Down

0 comments on commit 9b78a00

Please sign in to comment.