Skip to content

Instantly share code, notes, and snippets.

@mrryanjohnston
Created October 14, 2024 16:11
Show Gist options
  • Save mrryanjohnston/8003ca13e1c6777a5bc093f68d0ac94f to your computer and use it in GitHub Desktop.
Save mrryanjohnston/8003ca13e1c6777a5bc093f68d0ac94f to your computer and use it in GitHub Desktop.
(deffunction say_hello (?name) do
(format t "Hello, %s!" ?name))
function say_hello(name) {
console.log(`Hello, ${name}!`)
}
def say_hello(name):
print(f"Hello, {name}!")
def say_hello(name)
puts "Hello, #{name}!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment