16 lines
182 B
Text
16 lines
182 B
Text
open nat
|
|
definition foo.bar : nat := 10
|
|
definition boo.bla.foo : nat := 20
|
|
|
|
open foo
|
|
open boo.bla
|
|
|
|
#reduce bar
|
|
#reduce foo
|
|
|
|
constant x.y.z : nat
|
|
|
|
open x
|
|
#check y.z
|
|
open x.y
|
|
#check z
|