An open API service indexing awesome lists of open source software.

https://github.com/pr47h4m/helloworld

Hello World
https://github.com/pr47h4m/helloworld

c cpp docker hello-world java javascript python shell

Last synced: 3 months ago
JSON representation

Hello World

Awesome Lists containing this project

README

          

# Hello World

## Running C program
```bash
gcc helloworld.c
./a.out
```

## Running C++ program
```bash
g++ helloworld.cpp
./a.out
```

## Running Java program
```bash
java helloworld.java
```

## Running Javascript program
```bash
node helloworld.js
```

## Running Python program
```bash
python3 helloworld.py
```

## Running SH program
```bash
sh helloworld.sh
```

## Running Docker container
```bash
sudo docker run docker/whalesay cowsay "Hello World"
```