really dumb question about scopedge
in
Programming Questions
•
2 years ago
hi
I have a really dumb question, which i'm sure has the simplest answer, but maybe i'm too dumb to get it
why is it that whenever i try this
thanking you very much if you can demystify this for me...
I have a really dumb question, which i'm sure has the simplest answer, but maybe i'm too dumb to get it
why is it that whenever i try this
- String lines[] = loadStrings("wc.txt");
void setup(){
size(100,100);
}
void draw(){
}
- String lines[] = loadStrings("wc.txt");
size(100,100);
- void setup(){
size(100,100);
String lines[] = loadStrings("wc.txt");
}
void draw(){
}
thanking you very much if you can demystify this for me...
1