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
- Host: GitHub
- URL: https://github.com/pr47h4m/helloworld
- Owner: Pr47h4m
- Created: 2021-10-01T04:37:45.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-10-01T16:40:28.000Z (over 4 years ago)
- Last Synced: 2025-02-15T11:49:53.689Z (over 1 year ago)
- Topics: c, cpp, docker, hello-world, java, javascript, python, shell
- Language: Shell
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
```