Add example of an int is divided by a double (#2284)

This commit is contained in:
Felipe Martins 2016-06-21 18:20:59 -03:00 committed by ven
parent eaf0307775
commit 7895dcc604

View File

@ -88,6 +88,7 @@ true == false // false
6 / 2 // 3
6 / 4 // 1
6.0 / 4 // 1.5
6 / 4.0 // 1.5
// Evaluating an expression in the REPL gives you the type and value of the result