Skip to content

Latest commit

 

History

History
 
 

1 Quickstart

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

C++ Quickstart

You can run a C++ program in an IDE of your choice. One simple way to get started is to use a web-based IDE.

  1. Go to https://repl.it/.
  2. Create an account and log in.
  3. Click + New repl.
  4. Select C++ for the language.
  5. Click Create Repl
  6. Paste the below code into main.cpp
#include <iostream>
using namespace std;

int main() {
  cout << "Hello World!";
  return 0;
}
  1. Click the Run button at the top.
  2. You should see the Console print out the following information:

Console