-
Notifications
You must be signed in to change notification settings - Fork 2
Operators
Foks edited this page Jun 12, 2020
·
4 revisions
Safe, what is safe in L++? Safe is a way to make sure you're calling/editing/reading a variable that you're actually sure exists. How do we use "safe" in L++? Well, simply we can use my&.cool&.variable = 40 What this is the equivalent of doing is: if my and my.cool then return end; my.cool.variable = 40