Worklog for Neochrome

Glide IDE

Return to Worklogs

BlockComment(Posted 2007-07-09)
So far, BLOCK Comments WORKS!!

eg.

/*
  print "hello, this WONT be compiled!"
  Print "This line wont be either"
  Print "More code that wont be compiled."
*/

print "Now, THIS code WILL be compiled!"


you can disable these block comments too with a single LINE comment...

/*
... line code 1
... line code 2
*/

the above code WONT be compiled

if you do....

;/*
... line code 1
... line code 2
;*/

note the ; before the /*?
This will disable THIS block comment from /* to */

i MUST stress that THIS feature is NOT normal for the supplied Blitz3d.exe ide

neochrome.co.uk

Start Work(Posted 2007-07-06)
Decided that i need my IDE to be faster! and so far it is!

it loads up languages, from a deflibs.ini and customlibs.ini

also, im hoping the make the IDE deal with BLOCK Comments!
so the IDE will PreRead the pages before loading it to the compiler.. its a tricky job BUT im a big fan of Block Commenting and Blitz3D cant do that natively.

this is a slow project though.
Currently im working towards a new Blitz3D, but when i get to know Max more i'll be adding that to the IDE too

this IDE will have a Custom Types, and Custom Functions Highlighting Syntax too! make your Current project functions look like actual Native BlitzCommands...
bit like my old IDE, BBBDC 1.3

neochrome.co.uk