This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
wongola/std/io.cpp

11 lines
154 B
C++
Raw Normal View History

2023-09-29 09:01:46 +00:00
#include "io.hpp"
#include <iostream>
extern "C" void hello(int x)
{
for (int i=0; i<x; i++)
{
std::cout << "hello ! " << std::endl;
}
}