mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
8 lines
106 B
C++
8 lines
106 B
C++
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
int main (int argc, char* argv[]) {
|
||
|
|
if (argc != 1)
|
||
|
|
return -1;
|
||
|
|
|
||
|
|
return 42;
|
||
|
|
}
|