Hello World
This is my first blog post. I'm Jusung Lee, a developer. This blog is where I'll write about things I'm building and learning.
Here's a code snippet to prove the syntax highlighting works:
def hello():
message = "Hello, world!"
print(message)
if __name__ == "__main__":
hello()
And some JavaScript too:
const greet = (name) => {
console.log(`Hello, ${name}!`);
};
greet("world");
That's it for now.