charly-lang / charly

🐈 The Charly Programming Language | Written by @KCreate
https://charly-lang.github.io/charly/
MIT License
199 stars 10 forks source link

Wrong formatting on index out of bounds exception. #141

Closed KCreate closed 7 years ago

KCreate commented 7 years ago
let arr = [1, 2, 3]
arr[200] = 2

// => Index out of bounds. Size is 3, index is 200.0

The index should also be formatted as an integer