Hello World Programs | Using upto 20+ programming languages | Basics




"Every person should know how to program a computer because it teaches to think"  (Steve Jobs)

List of programming Languages, we will be working with:
  1. Java
  2. C++
  3. PHP
  4. C
  5. Perl
  6. C#
  7. Kotlin
  8. Visual Basic .Net
  9. Python
  10. Go
  11. Pascal
  12. JavaScript
  13. Ruby
  14. Swift
  15. Objective C
  16. Asp.NET
  17. MATLAB
  18. F#
  19. Fortan
  20. Groovy





Are you ready to get started? Let's Begin!





1. Java Program:



  1. Public class anything{                                                                
                      Public static void main(String[] args) {                     
                          //Your program begins with a call to main()
                          // Prints "Hello World " to the terminal window
                       System.Out.println(" Hello World ");                       
          }
    }





2. C++ Program:



  1. #include <iostream>
    using namespace anything;
                  int main() {
                                         count << " HelloWorld ";
                                         return 0;
    }




3. PHP Program:



  1. <?php
  2.                  // Prints to the screen
                    echo "HelloWorld ";
    ?>




4. Program:



  1. #include <stdio.h>
    int main() {
                              //printf() displays the string inside quotation
                             printf(" HelloWorld ");
                             return 0;
                         }




5. Perl Program:



  1. #1/usr/bin/env perl
                   user strict;
                   use warnings;
                                   // Prints to the screen    print " HelloWorld \n ";
                                     print 42, "\n";

               


6. C# Program:



  1. using Systems;
    namespace anything
    {
                    class program
                              { 
                                  static void Main() {
                                       Console.WriteLine(" Hello World ");
                               //Keeps the console window open in debug mode
                                      Console.WriteLine(" Press any key ");
                                     Console.ReadKey();
              }
         }

    }





7. Kotlin Program:



  1.     fun main(args: Array<String>)
                                  {
                                      println(" HelloWorld ")
                                   }
    




8. Visual Basic .NET Program:




  1.  public Module program
           public Sub Main()
                        // Prints to the screen 
                       System.Console.WriteLine(" Hello World ")
              End Sub
    End Module






9. Python Program:




  1. // Prints to the screen 

  2. Print(" HelloWorld ")

                       




10. GO Program:



  1. package main
                     import "fmt"
                                  func main() 
                                            {
                                          fmt.Println(" HelloWorld ")
                                            }




11. Pascal Program:



  1.  program pascal(output);
                                           begin
                                                 writeln(" HelloWorld ");
                                           end
        




12. JavaScript Program:



  1.             <script>
                              console.log(" HelloWorld ");
                 </script>





13. Ruby Program:




  1.                    puts value
                                         puts (" HelloWorld ")

        




14. Swift Program:




  1.                     var name : String = " HelloWorld "
                                                 print("We are printing, name")






15. Objective C Program:



  1. #Import <Foundation/Foundation.h>
                        int main()
                                   {
                                     NSString  *printing= @" Hello World ";
                                     NSLog(@"Greeting message: %@\n, printing ");
                             
                                      return 0;
                                    }






16. ASP.NET Program:




  1. // Working done in Razor Views
  2.                                                 <%


  3.       text =Hello World "
                                                                               Response.Write(text)
  4.                                                     %>
                       





17. MATLAB Program:




  1.                 // Prints to the screen 

                                                        fprintf(' Hello World ')






18. 
F# 

Program:






  1.   Let print = " Hello World "
  2.                     Let callMe = printfn print


               






19. Fortan Program:




  1.                                Program Print
                                                      Implicit none
                                                               write(*,*) " Hello World "
                                    end Program

        






20. Groovy Program:



  1. #include <stdio.h>
  2. int main()
  3. {
  4. Class printProgram 
  5.   {
                              static void main(String[] args) {
                              println " Hello World "
                           }

  6. }
          
                   




Post a Comment

0 Comments