You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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