lean2/tests/lean/run/example1.lean
2015-02-11 14:09:25 -08:00

14 lines
289 B
Text

import logic
inductive day :=
monday, tuesday, wednesday, thursday, friday, saturday, sunday
namespace day
definition next_weekday d :=
day.rec_on d tuesday wednesday thursday friday monday monday monday
example : next_weekday (next_weekday saturday) = tuesday :=
rfl
end day