121
Forum Games / Re: Word Association
« on: June 06, 2015, 03:32:57 PM »
Console
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
2. No posting rules in the 'Forums make the rules' postHypocrite!
ITS NOT THE SIXTH YET OKIT IS NOW BABY!
not bad for a beginnerNot bad? This is a work of art!
If the function has arguments, between the parenthesis is where you put them. They're kept for functions that don't have any arguments... well, because, really. I don't know why
Curly brackets mark the beginning and ends of blocks (functions, ifs, loops, etc) to tell the interpreter "this is where it starts and this is where it ends"
To clarify, anything inside those function brackets are the code that runs whenever that function is executed.Thank you both!
function helloWorld()
{
echo("Hello World");
}