Files
gf-core/gf-book/examples/chapter9/Logic.gf
2011-01-11 15:46:43 +00:00

10 lines
200 B
Plaintext

abstract Logic = {
cat
Prop ; Ind ;
data
And, Or, If : Prop -> Prop -> Prop ;
Not : Prop -> Prop ;
All, Exist : (Ind -> Prop) -> Prop ;
Past : Prop -> Prop ;
}