Beginner\'s question: I dared to introduce constants into my little program. I first resisted, but then I thought I should give it a try... to see that it doesn\'t work.
You don't need = in an #define or the semicolon afterwards. Just use
=
#define
#define kPageCurlSpeed 2.5
Read e.g. this wikipedia article on C preprocessor.