Tags | skill/problem_solving |
Hard Prerequisites | |
IMPORTANT: Please review these prerequisites, they include important information that will help you with this content. | |
|
Write a function that simply prints the string “Hello World!”.
If you have been asked to do these tasks in JavaScript then you must use the console.log
function to print the string.
For example:
console.log("something")
If you are using Python then you should be using print
to print the string.
print("something") # so this kind of thing
print "don't do this" # if you are writing print statements like this
# then you are using the wrong version of Python. Please
# make sure you have Python 3 installed.
If you are using Java then you should be using System.out.println
to print the string.
For example:
System.out.println("something");
Since this is your first code project we’ll walk you through the process of getting to complete. You’ll need to do the future projects on your own though :)
Some learners will be moving to alternate programs following this, but as long as you are still in tech, your understanding of Git and Github will be extremely important.