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
load a Slang file in visual studio with the following code:
int add2(int a, int b) {
return a + b;
}
int add1(int a, int b) {
return a + b;
}
void test() {
int x = 4;
int y = 2;
int a = add1(x, y);
}
Now cut out the test function with Ctrl+X, paste it back in any location which actually changes the layout of the code from its previous layout. The colors become all messed up for some terms. Edit a Slang file for a while and syntax highlighting becomes very jumbled.