views:

54

answers:

1

I just wondered if comments are included in binaries, or does the compiler know to remove them?

+3  A: 

Objective C, just like plain C, uses the preprocessor to do that kind of stuff. The compiler doesn't even see comments.

rubenvb