AFL can not call func like c langage

#1
AFL can not call func like c langage

c langage:

func(); // you can put it in your code anywhere.


func()
{
}

AFL langage:

func()
{
}
// IT MSUT BE DEFINE it FIRST!!

func(); // you can not put it in your before code.

How to call back func() ? AFL can goto any line or jump to next line ?


C= A+B; // How to JUMP TO A & B line ?
.
.
.
D=1;
E=2;
F=3;
G=4;
A= D+E;
B= F+G;




Please help it !!!
BR
 

Similar threads