Skip to content

Instantly share code, notes, and snippets.

View paramsiddharth's full-sized avatar
❤️
For the mother's pride, for the times I cried, got to stay alive. I'll survive.

Param Siddharth paramsiddharth

❤️
For the mother's pride, for the times I cried, got to stay alive. I'll survive.
View GitHub Profile
@paramsiddharth
paramsiddharth / hello-world-copilot.py
Created September 4, 2024 10:02
Some amazing hello world code (not verified for correctness) generated by GitHub Copilot.
# Print hello world
print("Hello, World!")
# Print hello world with a variable
message = "Hello, World!"
print(message)
# Print hello world with a function
def hello_world():
print("Hello, World!")