Question

On the Io home page it mentions its small size, but it uses a unit of measure I've not seen before:

small vm (~10K semicolons)

Is this just the size in characters (~bytes), or is there something more subtle going on here?

Was it helpful?

Solution

It's a measure of Logical lines of code.

Rather than simply counting all lines of code, including comments, blank lines, etc., you only measure the lines that end in a semicolon. It's a still-simple but more accurate measure of how large a piece of code is.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top