This commit is contained in:
qwjyh 2025-06-05 06:50:49 +09:00
parent 44708b89bf
commit b09058085c

View file

@ -1,6 +1,6 @@
--- Data and Functions
inductive Day : Type :=
inductive Day : Type where
| Monday
| Tuesday
| Wednesday
@ -138,11 +138,11 @@ def foo : Bool := true
--- Tuples
namespace TuplePlayground
inductive Bit : Type :=
inductive Bit : Type where
| B₁
| B₀
inductive Nybble :=
inductive Nybble where
| bits (b₀ b₁ b₂ b₃ : Bit)
#print Nybble