lean4-htt/old_tests/tests/lean/curly_notation.lean.expected.out
2018-04-10 12:56:55 -07:00

16 lines
321 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{1, 2, 3} : set
{1} : set
∅ : set
def s1 : set :=
{1, 2 + 3, 3, 4}
def s2 : set char :=
{'a', 'b', 'c'}
def s3 : set string :=
{"hello", "world"}
{a ∈ s1 | a > 1} : set
{a ∈ s1 | a > 1} : set
{a in s1 | a > 2} : set nat
{a, a} : set nat
{a, 1, a} : set nat
{a} : set nat
{a // a > 0} : Type