- /* Sample foothold program. (Yet another Hello World!.)
- // By Joel Rees, November 2013.
- // Play with it, check out your compiler and your understanding.
- */
- #include <stdio.h> /* For putting stuff out and getting stuff in. */
- int main( void )
- {
- puts( "Got my feet on the rock!" );
- return 0; /* Tell the system we made it safely. */
- }