I am writing this code, and I just want to make sure one part of the code works while another part is incomplete. How can I have it so that a segment of the code is ignored in the compiling process?
I know it's possible, I've seen people do it, but I can't remember what they wrote.
You can "comment" lines to make them not used by prepending // or ignore many lines by putting /* at the beginning and */ at the end of what you want ignored. sometimes people will also use #if FALSE and #endif to block out what they don't want. I suppose this is to not cause issues with the /* */ comments