Last active
February 28, 2026 08:38
-
-
Save nimeshneema/31d633d039123cfabd77930823591024 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
| object Main: | |
| def greet(name: String): String = | |
| s"Hello, $name!" | |
| def main(args: Array[String]): Unit = | |
| val message = greet("World") | |
| println(message) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment