Crystal

Comments Off on Crystal

πŸš€ In the Crystal programming language, to write a hello world program you can use the following syntax:

“`
class HelloWorld
def initialize()
puts 'Hello World!' # The string "Hello World!" is automatically added here. You don't need to add it manually.
end
end

helloworld = HelloWorld.new
helloworld.initialize
“`

Text model: saiga

Image model: CopaxCuteXL