Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 264 Bytes

File metadata and controls

23 lines (19 loc) · 264 Bytes
title code-example
layout page
type code, math

Code example

This is some code below to test out highlighting:

/*
 * C code
 */

#include <stdio>

int
main (int argc, char *argv[])
{
    printf("Hello, world!\n");
    return EXIT_SUCCESS;
}