Skip to content

Instantly share code, notes, and snippets.

@friendzis
Created June 25, 2015 09:41
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 friendzis/a20c964647a2bd402aeb to your computer and use it in GitHub Desktop.
Save friendzis/a20c964647a2bd402aeb to your computer and use it in GitHub Desktop.
C code embedding
#include <stdio.h>
int main(void)
{
int i;
for (i = 0; i < 5; i++)
{
<% int i = 0; printf("%d\t", i); %>
printf("%d\n", i);
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment