lean2/tests/lean/let1.lean.expected.out
Leonardo de Moura 2ca30571b4 Display the input term in the output of the Check command. It is useful to see the fully elaborated term.
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-09-08 22:55:21 -07:00

14 lines
429 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.

Set: pp::colors
Set: pp::unicode
let a : := 10, b : := 20, c : := 30, d : := 10 in a + b + c + d
let a : := 1000000000000000000,
b : := 20000000000000000000,
c : := 3000000000000000000,
d : := 4000000000000000000
in a + b + c + d
let a : := 10 in a + 1 :
30
30
let a : := 20 in a + 10 :
Set: lean::pp::coercion
let a : := nat_to_int 20 in a + (nat_to_int 10)