DEV Community

Carl J
Carl J

Posted on

1st Dev post

Here goes my first blog post related to coding.

Well... my first time coding was with C+, which was a long time ago.
The first thing I did with C+ was to write lines of code that would output the words "Hello World" onto a console screen. As seen below:

#include <iostream>

int main() {
    std::cout << "Hello World!";
    return 0;
}
Enter fullscreen mode Exit fullscreen mode

I guess that's how everyone starts out. Even with JavaScript (JS).
But with JS it's written:

console.log('Hello World');
Enter fullscreen mode Exit fullscreen mode

...so much simpler. This is one of the reasons I like to learn JS.

Top comments (1)

Collapse
 
thomasbnt profile image
Thomas Bnt ☕

Hello and welcome to DEV Community ! 👋🏼😉
You can say hi to the Welcome Thread, introduce yourself and talk what you're learning !

Hope y'all enjoy it here! If you're wondering how to get started with posting a post, then consider checking out this article here.

If you're wondering anything else, don't hesitate to reach out and ask. 😀