We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Functional Programming
- Introduction
- Hello World
Hello World
Hello World
A "Hello World" program has been widely adopted as the introductory program for learning how to code. So, let's start functional programming by writing the same program.
Sample Input
(Nil)
Sample Output
Hello World
Method Signature
Number Of Parameters: 0 Parameters: [] Returns: nil Behavior: Prints "Hello World"
For Hackers Using Clojure
This will be the outline of your function body. Fill in the blank portion marked by the underscores.
(___________________________)
For Hackers Using Scala
This will be the outline of your function body. Fill in the blank portion marked by the underscores.
def f() = ________________