Hello World in 10 Different Programming Languages
Writing Hello World is a custom I dare not to break as I start off with this brand new blog. Here are Hello World programs in ten different programming languages.
1. The C Not only C can be termed as mother of most high level languages but it remains relevant till date. It is undoubtedly the most popular language of all times.
1 | #include void main() { |
2. C ++ Bjarne Stroustrup’s language gave programmers a new world view with Object Oriented Programming.
1 | #include void main() { |
3. UNIX Shell Shell is like a Ninja’s sword! You need to see this.
1 | #!/bin/sh |
4. Java Java is perhaps the only ubiquitous multi platform language we have seen.
1 | public class HelloWorld { |
5. Hello World in C# C# is a great programming language based on C from Microsoft.
1 | public class HelloWorld { |
6. JavaScript JS shaped platforms which employ half of the Indian programmers.
1 | alert ("Hello World"); |
7. PHP PHP makes great front-ends for web applications.
1 | echo "Hello World!"; |
8. Python My favourite! Python is simple, readable and powerful.
1 | print ('Hello World!') |
9. PL/SQL When you cannot think in SQL, you use PL/SQL!
1 | begin |
10. Arduino C Arduino propels IoT development with affordable open source prototyping boards for everyone. Arduino-C is indeed C!
1 | // setup () function runs only once |
So this is how journey at iDevji starts, I hope it will create value, may be little, for everyone specially my students!