Using underscores in Slice variable names.

in Help Center
Is there a reason why underscores aren't permitted in variable names in slice?
struct MyStruct {
int some_variable;
};
Generates an error because of the underscore.
Thanks,
Caleb
struct MyStruct {
int some_variable;
};
Generates an error because of the underscore.
Thanks,
Caleb
0
Comments