quantumech

Untitled

Oct 26th, 2020
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.31 KB | None | 0 0
  1. // "The values that I am putting in the functions" = Arguement = Parameter
  2. // nothing = void
  3.  
  4.  
  5. float x = 0;
  6. int a = 4;
  7. int b = 2;
  8.  
  9. void setup()
  10. {
  11.   x = pow(a,b);    // pow(int, int) = int
  12.   //print(x);      // print(anything) = void
  13.   x = year();      // year() = int
  14.   print(x);
  15. }
  16.  
  17. void draw()
  18. {
  19.  
  20. }
Add Comment
Please, Sign In to add comment