8 lines
91 B
C++
8 lines
91 B
C++
|
#include <iostream>
|
||
|
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
std::cout << "Welcome to the Editor!" << std::endl;
|
||
|
|
||
|
}
|