나는 이렇게 학습한다/Algorithm & SQL

1118. Function 1 - hello world

daco2020 2022. 11. 18. 21:36
반응형

Description:

Make a simple function called greet that returns the most-famous "hello world!".

Style Points

Sure, this is about as easy as it gets. But how clever can you be to create the most creative hello world you can think of? What is a "hello world" solution you would want to show your friends?



Solution:

String greet() => 'hello world!';


반응형