Skip to content

Latest commit

 

History

History
78 lines (66 loc) · 1.31 KB

README.md

File metadata and controls

78 lines (66 loc) · 1.31 KB

First Repository

Hello World

Hello world programs in different programming languages

Helloworld Image

1. C

$ gcc helloworld.c
$ ./a.out

2. C++

$ g++ helloworld.cpp
$ ./a.out

3. C#

$ mcs -out:hello.exe helloworld.cs

4. Dart

$ dart helloworld.dart

5. Go

$ go build helloworld.go
$ ./helloworld

6. HTML (Not a programming language)

$ google-chrome helloworld.html

7. Java

$ javac helloworld.java
$ java helloworld

8. JavaScript

$ node helloworld.js

9. Python

$ python3 helloworld.py

10. Solidity

$ truffle migrate

11. Shell

$ ./helloworld.sh



As Cory House said:

Code is like humor. When you have to explain it, it’s bad.