Skip to content

Instantly share code, notes, and snippets.

@SangHakLee
Last active May 18, 2023 02:33
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SangHakLee/f3bdee00e6bcbb1965c235840eb43034 to your computer and use it in GitHub Desktop.
Save SangHakLee/f3bdee00e6bcbb1965c235840eb43034 to your computer and use it in GitHub Desktop.
git ecosystem

gist

gist 코드를 블로그에 넣기

Copy! <script src="https://gist.github.com/SangHakLee/f3bdee00e6bcbb1965c235840eb43034.js"></script>

and Paste where you want to put.

JavaScript

const name = 'hak'
console.log(`Hello, ${name}`)

PHP

<?php
$name = 'hak';
echo 'Hello, ' . $name;

Python 2.7

name = 'hak'
print('Hello, ' + name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment