News:

As usual while waiting for the next release - don't forget to check the nightly builds in the forum.

Main Menu

code blacks giving black screen after compiling

Started by HELPMERHONDA, May 27, 2020, 03:03:23 AM

Previous topic - Next topic

HELPMERHONDA


Why is the code below giving a black screen after compiling???

#include <iostream>
using namespace std;

void testcode(){
cout << "test" << endl;
}

int main (){

void testcode();

return 0;
}