Answers for "print hello world in scala"

0

print hello world in scala

object Hello {
    def main(args: Array[String]) = {
        println("Hello, world")
    }
}
Posted by: Guest on March-15-2022
0

print hello world in scala

public class Hello {
    public static void main(String[] args) {
        System.out.println("Hello, world");
    }
}
Posted by: Guest on March-15-2022

Browse Popular Code Answers by Language