News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

code folding setup

Started by 3DModelerMan, August 09, 2008, 05:39:51 PM

Previous topic - Next topic

3DModelerMan

How do I put folding points in my code?.
Thanks :D.

JGM

It says it on the documentation but here it is:

//{My folding point
   ...Som code here
//}

Example:

//{Functions
   FunctionOne();
   FunctionTwo();
//}

//{Main
  void main()
  {
   }
//}