lean2/tests/lean/let1.lean.expected.out

16 lines
444 B
Text
Raw Normal View History

Set: pp::colors
Set: pp::unicode
Imported 'Int'
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