Hey
Is it possible to make a class in fenix like in c#/Java insted of having everything in one HUGE file. :unsure:
How do you make Integers? :unsure:
I know you can do it like this:
Global
countA;
countB;
Process Test();
Begin
countA = 5;
icountB = 5;
End;
But I dont want them to be global, I want them only in the process.
I tried:
process Test();
Begin
int countA = 5;
int countB = 5;
End;
but it dosent work.
Is it possible to make a class in fenix like in c#/Java insted of having everything in one HUGE file. :unsure:
How do you make Integers? :unsure:
I know you can do it like this:
Global
countA;
countB;
Process Test();
Begin
countA = 5;
icountB = 5;
End;
But I dont want them to be global, I want them only in the process.
I tried:
process Test();
Begin
int countA = 5;
int countB = 5;
End;
but it dosent work.