documentation proper bracketing

This commit is contained in:
Andreas Rumpf
2016-01-27 15:52:08 +01:00
parent 7052b69476
commit a581437e29

View File

@@ -15,7 +15,7 @@ Example:
try:
var a = readLine(f)
var b = readLine(f)
echo "sum: " & $(parseInt(a + parseInt(b)))
echo "sum: " & $(parseInt(a) + parseInt(b))
except OverflowError:
echo "overflow!"
except ValueError: