MohxNotes

Hello World

Mohammed 3 Min Read
📚 On this page
Hello World

Welcome to My Blog!

Hello, world! 👋

Welcome to my blog, where I’ll be sharing my knowledge and experiences with programming and technology. Whether you’re an experienced developer or just starting your journey in the world of programming, this blog is for you!

About Me

Before we dive into the tech stuff, let me introduce myself. I’m Mohammed, a passionate programmer and tech enthusiast. I’ve been working in the tech industry for $ years and have had the opportunity to work on various exciting projects.

What to Expect

In this blog, you can expect to find a wide range of topics related to programming and technology. I’ll be covering programming languages, frameworks, libraries, best practices, coding tips, and much more. My goal is to create informative and beginner-friendly content that will help you level up your skills and stay updated with the latest trends in the tech world.

Get in Touch

I love connecting with fellow developers and learners, so feel free to reach out to me through the comments section or by filling out the contact form on the About Page . If you have any topic suggestions or questions, don’t hesitate to let me know! I’m always excited to hear from you and engage in meaningful discussions. Looking forward to connecting with you!

Fun with Markdown

Let’s have some fun with Markdown! Here are some additional Markdown elements to explore:

Emojis

Markdown supports emojis! 😄🚀

Tables

LanguageCode Sample
Python print("Hello, World!")
JavaScript console.log("Hello, World!");

Task Lists

  • Learn Markdown
  • Master Python
  • Build a web app

Block quotes

<p>A ship in harbor is safe, but that is not what ships are built for.</p>

Fact

<p>Did you know? The first computer bug was an actual bug! A mouse got trapped in a relay of the Harvard Mark II computer in 1947.</p>

Success

<p>Everything compiled perfectly! 🚀<br/> You’re ready to ship your next <strong>release</strong> with confidence.</p>

Images

Tech Image

Abbreviations

Markdown also supports abbreviations. HTML stands for HTML.

Keyboard Inputs

To open the developer tools in Chrome, press F12.

Superscript and Subscript

  • E=mc2
  • H2O

Fun with Code

Now, let’s have some fun with code! Here’s a classic “Hello, World!” example in Python and JavaScript:

Python

main.py
 print("Hello, World!") 

JavaScript

hello.js
 console.log("hewwo");
console.log("hello");
console.log("goodbye"); 
App.js
 const [age, setAge] = useState(50);
const [name, setName] = useState("Taylor"); 

Lets code a for loop in C++

In this tutorial, we will loop through a for loop and print out the values of i

loop.cpp
 for(int i = 0; i < 10; i++) {
  std::cout << i << std::endl;
} 

Aren’t they hilarious? 😄

Stay Tuned!

Make sure to bookmark this blog and subscribe to my newsletter to receive updates whenever I publish a new post. I’m excited to share my knowledge with you and be a part of your tech journey.

Happy coding! 🚀