πŸ”– Background Information

This lab is a simple way to make sure that your local setup is working properly. It sets the stage to make sure that you can develop in C++ on your workstation.

🎯 Problem Statement

Write a program that prints β€œHello World!” to the terminal and then exits gracefully.

βœ… Acceptance Criteria

  • The program should be written in C++.
  • The program should print β€œHello World!” to the terminal and then exit gracefully.
  • No user input is needed for this problem.

πŸ“‹ Dev Notes

The goal of this assignment is to make sure that your dev setup is working properly. Some things that you might want to consider as you work through this include:

  • Do you have a working C++ compiler installed on your computer?
  • Is your compiler set to compile C++ 11 or above?
  • Is your text editor set up properly?
  • Are there any packages or plugins that you like to use to aid you in development?
  • Are there any static analysis tools that you like to use (e.g. Valgrind)?
  • Are there any useful sites / docs that you have bookmarked?
  • Is there a testing framework that you might want to use?

πŸ–₯️ Example Output

$ ./hello.out

Hello World!

πŸ“ Thought Provoking Questions

There are no thought provoking questions for this lab. The goal here is to get your workstation set up.

πŸ’Ό Add-Ons For the Portfolio

There are no add-ons available for this lab.

πŸ“˜ Works Cited

There are no works cited for this lab.