Inspiration
A challenge to print HelloWorld in a new language was presented on the LHD: Build website
What I Learned
I learned how to print HelloWorld in the C++ programing language
#include <iostream>
//I am profficient in Java and Python
//I have never used C++ before. To learn how to print hello world, I used google as a resource
int main() {
std::cout << "Hello World!\n";
}

Log in or sign up for Devpost to join the conversation.