- include stdio.h
- include "localinclude.h"
- # Automatically a static, unless declared public:
- int n
- public int main(int argc, char** argv)
- printf("Hello world, with an integer! %d", n)
- n = 1
- case n
- when 1
- printf("n was found to be 1")
- when 2
- printf("n was found to be 2")
- else
- printf("n was some other value")
- # if no return statement on main, return 0