Last active
December 4, 2019 03:39
-
-
Save fu-sen/785ca91d50e0409c84ab166676057007 to your computer and use it in GitHub Desktop.
z88dk PC-E200/G text test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <graphics.h> | |
#include <conio.h> | |
#include <stdio.h> | |
main(){ | |
clg(); | |
gotoxy(1,1); | |
printf("test\n"); | |
gotoxy(2,2); | |
printf("test\n"); | |
gotoxy(3,3); | |
printf("test\n"); | |
while (!getk()){} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment