The @ symbol allows you to use reserved word. For example:
int @class = 15;
The above works, when the below wouldn’t:
int class = 15;
The @ symbol allows you to use reserved word. For example:
int @class = 15;
The above works, when the below wouldn’t:
int class = 15;