Skip to content

First Repository : Hello World programs in different programming languages

Notifications You must be signed in to change notification settings

Nandan-unni-zz/Hello-World

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.