It's a common practice to code the phrase "Hello World!", to the screen the first time you use a new language or program. I wrote about this in an early blog post. But am updating not with syntax highlighting.
Here's how "Hello World!" is created in a few languages.
HTML
<title>Hello World</title>
<H2>Hello World!</h2>
JavaScript
console.log("Hello World!")
C#
Console.WriteLine("Hello World"!)
Python
print ("Hello World!")
def hello_function():
print("Hello World!")
hello_function()
Well time and frameworks change, is it time to replace Hello World? What would be a suitable replacement?
What would make a dev smile to see on screen?
My Suggestion
.
.
.
The classic greeting from an old mentor.
Hello There!
HTML
<title>Hello There</title>
<H2>Hello There!</h2>
JavaScript
console.log("Hello There!")
Python
print("Hello There!")
def hello_function():
print("Hello there!")
hello_function()
See it looks good.
-$JarvisScript git push