QUESTION
Define a function called greet(), which has no parameters. The function should print the word "Welcome" to the console.
Assume a function called send_word() already exists, and requires one argument. Write a function call to send_word(), using the word "cookie" as its argument.
In Processing, set the fill color for drawing shapes to blue.
Assume a function called clear() already exists, and requires no arguments. Write a function call to clear( ).
Assume a function called location() already exists, and requires two arguments. Write a function call to location(), using 52.1579 and 106.6702 as its arguments.
Related Questions