Skip to content

Instantly share code, notes, and snippets.

@eyecatchup
Last active March 12, 2019 11:41
Show Gist options
  • Save eyecatchup/2f35faad4d4fa55810422283f7bc3b78 to your computer and use it in GitHub Desktop.
Save eyecatchup/2f35faad4d4fa55810422283f7bc3b78 to your computer and use it in GitHub Desktop.
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