mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-14 12:43:19 +02:00
16 lines
268 B
C++
16 lines
268 B
C++
#include<Ev/Io.hpp>
|
|
#include<Ev/start.hpp>
|
|
#include<iostream>
|
|
|
|
namespace {
|
|
|
|
Ev::Io<int> io_main(int argc, char **argv) {
|
|
std::cout << "Hello World!" << std::endl;
|
|
return Ev::lift(0);
|
|
}
|
|
|
|
}
|
|
|
|
int main (int argc, char **argv) {
|
|
return Ev::start(io_main(argc, argv));
|
|
}
|