26 lines
447 B
C++
26 lines
447 B
C++
|
/*
|
|||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|||
|
* Click nbfs://nbhost/SystemFileSystem/Templates/cppFiles/main.cc to edit this template
|
|||
|
*/
|
|||
|
|
|||
|
/*
|
|||
|
* File: main.cpp
|
|||
|
* Author: caleb
|
|||
|
*
|
|||
|
* Created on February 21, 2024, 10:13 AM
|
|||
|
*/
|
|||
|
|
|||
|
#include <cstdlib>
|
|||
|
#include <iostream>
|
|||
|
|
|||
|
using namespace std;
|
|||
|
|
|||
|
/*
|
|||
|
*
|
|||
|
*/
|
|||
|
int main(int argc, char** argv) {
|
|||
|
std:cout << "Hello World";
|
|||
|
return 0;
|
|||
|
}
|
|||
|
|