Skip to content

Commit aa5d178

Browse files
committed
include a cool cover image
1 parent c208a3d commit aa5d178

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

.i18n/en/Game.pot

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
msgid ""
22
msgstr "Project-Id-Version: Game v4.7.0\n"
33
"Report-Msgid-Bugs-To: \n"
4-
"POT-Creation-Date: Wed Jun 18 21:45:45 2025\n"
4+
"POT-Creation-Date: Wed Jun 18 21:52:52 2025\n"
55
"Last-Translator: \n"
66
"Language-Team: none\n"
77
"Language: en\n"
@@ -190,6 +190,18 @@ msgstr ""
190190
msgid "You have just proved `add_right_cancel`"
191191
msgstr ""
192192

193+
#: Game.Levels.RingWorld.L04
194+
msgid "zero times anything"
195+
msgstr ""
196+
197+
#: Game.Levels.RingWorld.L04
198+
msgid "Using the axioms, we prove zero times anything vanishes."
199+
msgstr ""
200+
201+
#: Game.Levels.RingWorld.L04
202+
msgid "You have just proved `zero_mul`"
203+
msgstr ""
204+
193205
#: Game.Levels.RingWorld
194206
msgid "Ring World"
195207
msgstr ""

Game.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Languages "English"
1717
CaptionShort "Integer Game"
1818
CaptionLong "Learn Lean at the Ross Mathematics Program"
1919
-- Prerequisites "" -- add this if your game depends on other games
20-
-- CoverImage "images/cover.png"
20+
CoverImage "images/cover.png"
2121

2222
/-! Build the game. Show's warnings if it found a problem with your game. -/
2323
MakeGame
Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
import Game.Metadata
2-
import Mathlib.Algebra.Ring.Defs
3-
import Mathlib.Tactic.Use
42

53
World "AxiomWorld"
64
Level 2
@@ -10,9 +8,7 @@ Title "Multiplication"
108
variable {R : Type}
119
variable [CommRing R]
1210

13-
Introduction "This text is shown as first message when the level is played.
14-
You can insert hints in the proof below. They will appear in this side panel
15-
depending on the proof a user provides."
11+
Introduction "Now we check some facts about multiplication."
1612

1713
/-- associativity of multiplication in a ring -/
1814
TheoremDoc mul_assoc as "mul_assoc" in "Ring"
@@ -22,9 +18,7 @@ TheoremDoc mul_comm as "mul_comm" in "Ring"
2218

2319
NewTheorem mul_assoc mul_comm
2420

25-
NewTactic rw
26-
2721
Statement ( a b : R ) : a * b = b * a := by
2822
rw [mul_comm]
2923

30-
Conclusion "This last message appears if the level is solved."
24+
Conclusion "Let's put multiplication and addition together."

images/cover.png

1.5 MB
Loading

0 commit comments

Comments
 (0)