mirror of
https://github.com/AdaCore/why3.git
synced 2026-02-12 12:34:55 -08:00
10 lines
71 B
Plaintext
10 lines
71 B
Plaintext
|
|
theory Sum
|
|
|
|
type sum 'a 'b =
|
|
| Left 'a
|
|
| Right 'b
|
|
|
|
end
|
|
|