forked from GitHub/gf-core
10 lines
200 B
Plaintext
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 ;
|
|
}
|