lean2/tests/lean/alias2.lean
Leonardo de Moura 8c956280d9 chore(frontends/lean): rename setoption and setopaque commands to set::option and set::opaque
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-01-06 11:41:03 -08:00

16 lines
No EOL
380 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.

scope
variable Natural : Type.
alias : Natural.
variable x : Natural.
print environment 1.
set::option pp::unicode false.
print environment 1.
set::option pp::unicode true.
print environment 1.
alias NN : Natural.
print environment 2.
alias : Natural.
print environment 3.
set::option pp::unicode false.
print environment 3.
pop::scope