Here's a summary of issue #35:
Problem
The README's "Running Programs with the Course Module" section documents commands like:
./occam2go -I kroc/modules/course/libsrc \
-D TARGET.BITS.PER.WORD=32 \
-o hello_world.go kroc/modules/course/examples/hello_world.occ
But this fails because hello_world.occ does #INCLUDE "course.module", and there's no course.module file in the example's directory. The file does exist at kroc/modules/course/libsrc/course.module, so -I kroc/modules/course/libsrc should make it findable by the preprocessor.
Let me verify this quickly to see if the include path resolution is actually the issue or if the example file path is wrong.