mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
17 lines
254 B
Plaintext
17 lines
254 B
Plaintext
interface LexMath = open Syntax in {
|
|
|
|
oper
|
|
zero_PN : PN ;
|
|
successor_N2 : N2 ;
|
|
sum_N2 : N2 ;
|
|
product_N2 : N2 ;
|
|
even_A : A ;
|
|
odd_A : A ;
|
|
prime_A : A ;
|
|
equal_A2 : A2 ;
|
|
small_A : A ;
|
|
great_A : A ;
|
|
divisible_A2 : A2 ;
|
|
number_N : N ;
|
|
}
|