<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Augustine Ikenwa</title>
    <description>The latest articles on DEV Community by Augustine Ikenwa (@ikenwaa).</description>
    <link>https://dev.to/ikenwaa</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F195247%2F7f2d9130-6996-4a18-a699-49e29df801b1.jpeg</url>
      <title>DEV Community: Augustine Ikenwa</title>
      <link>https://dev.to/ikenwaa</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ikenwaa"/>
    <language>en</language>
    <item>
      <title>Hello World!👋</title>
      <dc:creator>Augustine Ikenwa</dc:creator>
      <pubDate>Sun, 07 Aug 2022 15:51:25 +0000</pubDate>
      <link>https://dev.to/ikenwaa/hello-world-3kho</link>
      <guid>https://dev.to/ikenwaa/hello-world-3kho</guid>
      <description>&lt;p&gt;&lt;strong&gt;HEADS UP&lt;/strong&gt;: This is my first time writing a tech article/post just in case you find it boring or not helpful, please bear with me🙏. I will get better with time 💪&lt;/p&gt;

&lt;p&gt;I have visited many websites and watched/read twice as many tutorials trying to learn how to write code in the past and almost every site starts with a simple &lt;code&gt;Hello world!&lt;/code&gt; that logs in the console or terminal of the programmer's IDE (Integrated Development Environment). Most programming languages have their syntax for writing this simple but interesting line of code, some languages go as far writing multiple lines of code just to print a simple &lt;code&gt;Hello world!&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Here's how this simple line of code is written in different programming languages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/JavaScript"&gt;&lt;strong&gt;JavaScript&lt;/strong&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;console.log("Hello world!");
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;JavaScript, popularly known as JS, was created by &lt;a href="https://en.wikipedia.org/wiki/Brendan_Eich"&gt;Brendan Eich&lt;/a&gt; and was initially called LiveScript before it was renamed to JavaScript in December 1995. JavaScript is one of the core programming languages that powers the World Wide Web alongside &lt;a href="https://en.wikipedia.org/wiki/HTML"&gt;HTML&lt;/a&gt; and &lt;a href="https://en.wikipedia.org/wiki/CSS"&gt;CSS&lt;/a&gt; and over 95% of dynamic websites on the internet are built using JavaScript as it can be run and processed in the client's browser.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/TypeScript"&gt;&lt;strong&gt;TypeScript&lt;/strong&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;console.log("Hello world!");
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;TypeScript a superset of JavaScript was developed and is currently maintained by &lt;a href="https://en.wikipedia.org/wiki/Microsoft"&gt;Microsoft&lt;/a&gt;. It is designed for the development of large applications and transpiles to JavaScript and can also be used in the development of JavaScript applications for client-side and server-side execution.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/C_(programming_language)"&gt;&lt;strong&gt;C&lt;/strong&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#include &amp;lt;stdio.h&amp;gt;

int main() {
  printf("Hello world!");
  return 0;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;C was created by &lt;a href="https://en.wikipedia.org/wiki/Dennis_Ritchie"&gt;Dennis Ritchie&lt;/a&gt; and first appeared in 1972 and it remains widely used and influential till tomorrow. C was developed for use in programming operating systems, device drivers and protocol stacks. It is also used in computer architectures ranging from &lt;a href="https://en.wikipedia.org/wiki/Supercomputer"&gt;supercomputers&lt;/a&gt; to &lt;a href="https://en.wikipedia.org/wiki/Microcontroller"&gt;microcontrollers&lt;/a&gt; and &lt;a href="https://en.wikipedia.org/wiki/Embedded_system"&gt;embedded systems&lt;/a&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/C%2B%2B"&gt;&lt;strong&gt;C++&lt;/strong&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;#include &amp;lt;iostream&amp;gt;

int main() {
    std::cout &amp;lt;&amp;lt; "Hello world!";
    return 0;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;C++ was created and designed by the Danish scientist, &lt;a href="https://en.wikipedia.org/wiki/Bjarne_Stroustrup"&gt;Bjarne Stroustrup&lt;/a&gt; in 1985 as an extension of C. C++ is a general-purpose programming language that is built based on C but with &lt;a href="https://en.wikipedia.org/wiki/Class_(programming)"&gt;classes&lt;/a&gt; and &lt;a href="https://en.wikipedia.org/wiki/Object-oriented_programming"&gt;object-oriented programming&lt;/a&gt; features. It plays an integral role in the architecture of MacOS and WindowsOS and is one of the most-widely used programming languages used in video game development, desktop applications, servers, etc.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/C_Sharp_(programming_language)"&gt;&lt;strong&gt;C#&lt;/strong&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;namespace HelloWorld
{
    class Hello {         
        static void Main(string[] args)
        {
            System.Console.WriteLine("Hello world!");
        }
    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;C#, pronounced as "see sharp", is a general-purpose, &lt;a href="https://en.wikipedia.org/wiki/Multi-paradigm_programming_language"&gt;multi-paradigm programming language&lt;/a&gt; created by another Danish scientist, &lt;a href="https://en.wikipedia.org/wiki/Anders_Hejlsberg"&gt;Anders Hejlsberg&lt;/a&gt; from tech giant, &lt;a href="https://en.wikipedia.org/wiki/Microsoft"&gt;Microsoft&lt;/a&gt; in 2000. C# runs on the .NET framework and it encompasses static typing, strong typing, lexically scoped, imperative, declarative, functional, generic, object-oriented (class-based), and component-oriented programming disciplines.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/Python_(programming_language)"&gt;&lt;strong&gt;Python&lt;/strong&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;print("Hello world!")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Python was created by Dutch programmer &lt;a href="https://en.wikipedia.org/wiki/Guido_van_Rossum"&gt;Guido van Rossum&lt;/a&gt; and was first released in 1991. It is a high-level, interpreted, general-purpose programming language with a design philosophy that emphasizes code readability with use of significant code indentation and is often referred to as a "batteries included" programming language thanks to its comprehensive standard libraries.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/R_(programming_language)"&gt;&lt;strong&gt;R&lt;/strong&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;cat("Hello world!")
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;R was created by statisticians &lt;a href="https://en.wikipedia.org/wiki/Ross_Ihaka"&gt;Ross Ihaka&lt;/a&gt; and &lt;a href="https://en.wikipedia.org/wiki/Robert_Gentleman_(statistician)"&gt;Robert Gentleman&lt;/a&gt; and it first appeared in August 1993. It is a programming language for statistical computing and graphics and it is used amongst data miners, bioinformaticians and statisticians for data analysis and developing statistical software.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; &lt;a href="https://en.wikipedia.org/wiki/Go_(programming_language)"&gt;&lt;strong&gt;Go&lt;/strong&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;package main

import "fmt"

func main() {
  fmt.Println("Hello world!")
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Go often referred to as Golang, was designed at Google in 2007 to improve programming productivity by &lt;a href="https://en.wikipedia.org/wiki/Robert_Griesemer_(computer_programmer)"&gt;Robert Griesemer&lt;/a&gt;, &lt;a href="https://en.wikipedia.org/wiki/Rob_Pike"&gt;Rob Pike&lt;/a&gt;, and &lt;a href="https://en.wikipedia.org/wiki/Ken_Thompson"&gt;Ken Thompson&lt;/a&gt; and later released to the public in November 2009. It is a statically typed, compiled programming language and is syntactically similar to C, but with &lt;a href="https://en.wikipedia.org/wiki/Memory_safety"&gt;memory safety&lt;/a&gt;, &lt;a href="https://en.wikipedia.org/wiki/Garbage_collection_(computer_science)"&gt;garbage collection&lt;/a&gt;, &lt;a href="https://en.wikipedia.org/wiki/Structural_type_system"&gt;structural typing&lt;/a&gt;, and &lt;a href="https://en.wikipedia.org/wiki/Communicating_sequential_processes"&gt;CSP&lt;/a&gt;-style concurrency.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/Java_(programming_language)"&gt;&lt;strong&gt;Java&lt;/strong&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class HelloWorld {
  public static void main(String[] args) {
    System.out.println("Hello world!");
  }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Java was originally developed by &lt;a href="https://en.wikipedia.org/wiki/James_Gosling"&gt;James Gosling&lt;/a&gt; at &lt;a href="https://en.wikipedia.org/wiki/Sun_Microsystems"&gt;Sun Microsystems&lt;/a&gt; and was released in May 1995. It is a high-level, class-based, object-oriented programming language designed to have as few implementation dependencies as possible and is intended to let programmers write code once and run anywhere without the need to recompile.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;a href="https://en.wikipedia.org/wiki/PHP"&gt;&lt;strong&gt;PHP&lt;/strong&gt;&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;echo "Hello world!";
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;PHP is a general-purpose scripting language geared towards web development and was originally created by a Danish-Canadian, &lt;a href="https://en.wikipedia.org/wiki/Rasmus_Lerdorf"&gt;Rasmus Lerdorf&lt;/a&gt; in 1994. PHP originally translated to &lt;em&gt;Personal Home Page&lt;/em&gt;, however, today it is known as &lt;em&gt;PHP: Hypertext Preprocessor&lt;/em&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Through your ideas, you open the window of your mind(IDE) and say a Hello to the World. - &lt;strong&gt;Mehmet Murat Ildan&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;A programmer's choice of language is totally up to the programmer or most times, in the case where the programmer is hired or employed to build/maintain an already existing application, they'd have to learn the syntax of the required language and there will be no better introduction to that language other than the infamous line, &lt;code&gt;Hello world!&lt;br&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;If you enjoyed reading this article as much as I enjoyed writing it, please be kind to give it a Like(❤️), Unicorn(🦄) and/or Leave a Comment(✍️) and also share with your friends and family interested in learning how to code. &lt;strong&gt;PS&lt;/strong&gt;: Doing this will help me improve and write better informative posts.&lt;/p&gt;

&lt;p&gt;You can find me on &lt;a href="https://twitter.com/im_ikenwa"&gt;Twitter&lt;/a&gt; and &lt;a href="//www.linkedin.com/in/augustine-ikenwa-91173213a"&gt;LinkedIn&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Until my next post, Ciao🏃‍♂️🏃‍♂️🏃‍♂️&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Header photo by &lt;a href="https://unsplash.com/@claybanks?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Clay Banks&lt;/a&gt; on &lt;a href="https://unsplash.com/s/photos/hello-world?utm_source=unsplash&amp;amp;utm_medium=referral&amp;amp;utm_content=creditCopyText"&gt;Unsplash&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>productivity</category>
      <category>codenewbie</category>
    </item>
  </channel>
</rss>
