Skip to content

Instantly share code, notes, and snippets.

@taroyabuki
Last active December 19, 2015 05:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taroyabuki/5908010 to your computer and use it in GitHub Desktop.
Save taroyabuki/5908010 to your computer and use it in GitHub Desktop.
Literate Programming
@ hello, world! と出力するC言語のプログラムは以下のとおり。
@c
#include <stdio.h>
main()
{
printf("hello, world\n");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment