File size: 183 Bytes
19605ab
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
#include <windows.h>

#include "TestUtil.cc"

int main(int argc, char *argv[]) {
    int col = atoi(argv[1]);
    int row = atoi(argv[2]);
    setCursorPos(col, row);
    return 0;
}