Skip to content

Instantly share code, notes, and snippets.

@eyecatchup
Last active March 12, 2019 11:41
An example gist with code blocks

Here's a code block with GFM syntax (three backticks):

const hello = _ => {
    console.log('Hello world')
};
hello();

And the same code using indentation syntax:

const hello = _ => {
    console.log('Hello world')
};
hello();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment