class HelloWorld {
    public static void main (String[] args) {
        String s = "Hello, world!";
  Initialization of the String variable 's';
        System.out.println(s);
    }
}