mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
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 ;
|
|
}
|