/* Sample foothold program with math. // 地盤固めの算数入り例文プログラム。 // By Joel Rees, November 2013. // ジョエル リースの2013年11月作。 // Play with it, check out your compiler and your understanding. // これを使ってコンパイラの動作や自分の理解度をご確認ください。 // いじってみて下さい。 */ #include /* 標準入出力 */ int main( void ) { printf( "%d 本の足を岩に乗せたよ!\n", 1 + 1 ); return 0; /* また無事に終わった。 */ }