You are browsing as a guest. Sign up (or log in) to start making projects!

2h 34m 5s logged

Privates

Added a “private” keyword, anything declared private cannot be accessed from outside the current file.

This prevents the user from messing with internal states of libraries they are using

For example, the list library from the standard library.
Now you can’t directly mess with the list pointer

triangles.ptr[5] = ...;

This now results in an error because “ptr” is private!
I also added some small optimizations for lambdas.

0
23

Comments 0

No comments yet. Be the first!