2014-07-05 01:37:49 +00:00
|
|
|
|
import standard
|
2014-08-15 20:27:18 +00:00
|
|
|
|
using num prod
|
2014-07-05 01:37:49 +00:00
|
|
|
|
|
|
|
|
|
section
|
|
|
|
|
parameter {A : Type}
|
|
|
|
|
parameter {B : Type}
|
|
|
|
|
parameter Ha : inhabited A
|
|
|
|
|
parameter Hb : inhabited B
|
|
|
|
|
-- The section mechanism only includes parameters that are explicitly cited.
|
|
|
|
|
-- So, we use the 'including' expression to make explicit we want to use
|
|
|
|
|
-- Ha and Hb
|
2014-07-22 16:43:18 +00:00
|
|
|
|
theorem tst : inhabited (Prop × A × B)
|
2014-07-05 01:37:49 +00:00
|
|
|
|
:= including Ha Hb, _
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
(*
|
|
|
|
|
print(get_env():find("tst"):value())
|
|
|
|
|
*)
|