Cannot find a class or type named "Random"
in
Programming Questions
•
8 months ago
Hi there, I'm new to Processing and I cannot eliminate the error with the following code:
- Random generator;
- void setup() {
- size(640,480);
- background(255);
- generator = new Random();
- }
- void draw() {
- }
What is wrong here?
Thanks,
Christian
1