Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 463 Bytes

README.md

File metadata and controls

38 lines (31 loc) · 463 Bytes

Hello World

Running C program

gcc helloworld.c
./a.out

Running C++ program

g++ helloworld.cpp
./a.out

Running Java program

java helloworld.java

Running Javascript program

node helloworld.js

Running Python program

python3 helloworld.py

Running SH program

sh helloworld.sh

Running Docker container

sudo docker run docker/whalesay cowsay "Hello World"