For those of you who grew up with 7-Eleven convenience stores, what’s the consensus on Slurpees? I always loved the cherry coke and I preferred them slightly over ICEEs.
After several updates in the past few months that have hampered exploit detection tools this might be the biggest game security w in recent memory assuming this is HWID ban functionality.
The const keyword has been added as a dependency to the export values RFC. I doubt it will have significant performance boosts, but it hasn’t been implemented yet, so we will see.
For context, the only reason the team added this was because they have plans for a static export system that treats exported values as JavaScript-const with all around terrible mechanics (there’s this aliased export syntax that breaks exclusive mutability rules) and to fix it they monkey-patched const in.
I believe there is little purpose for const in Luau because the compiler can already figure out which variables are constant, and accidently reassigning constants just doesn’t happen. If you look into how JavaScript added const you will see some truly bizarre stuff (look up Temporal Dead Zones) and my fear is the same wacky stuff is going to be brought to Luau because of this.