본문 바로가기

HS/Round A Round

Round A Round - TEST

def hello():
    print('Hello, world!')
 
hello()

 

#include <stdio.h>

int main()
{
    printf("Hello, world!\n");

    return 0;
}

 

public class HelloWorld {
    public static void main(String args[]) {
        System.out.println("Hello World");
    }
}