
Originally Posted by
Alex_Agnew
A loop is a function where you 'call' aka looping the function.
You can see as it like this.
Code:
1. void loop()
2. {
3. //Code will be placed here
4. }
What the program will always do is loop the first line and then loop the second and so forth.
Now what is a loop?
A loop is a basicly a function that keeps getting called and calls all the other functions.
So for example if you add a call on line 3 (
hackthread_for_example(); ), this will always recall the
hackthread_for_example thread.
I hope this helps, if not tell me

ahhh so i know what is the meaning of loop thanks haha