Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Lorenzob
/
astra
like
0
Text Generation
Diffusers
doi:10.57967/hf/2194
llm
Model card
Files
Files and versions
Use this model
85e17ff
astra
/
web
/
node_modules
/
node-pty
/
deps
/
winpty
/
misc
/
SetCursorPos.cc
Lorenzob
Upload folder using huggingface_hub
19605ab
verified
over 1 year ago
raw
Copy download link
history
blame
183 Bytes
#
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
;
}