Created
October 14, 2024 16:11
-
-
Save mrryanjohnston/8003ca13e1c6777a5bc093f68d0ac94f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(deffunction say_hello (?name) do | |
(format t "Hello, %s!" ?name)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function say_hello(name) { | |
console.log(`Hello, ${name}!`) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def say_hello(name): | |
print(f"Hello, {name}!") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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