mirror of
https://github.com/Noratrieb/elven-forest.git
synced 2026-01-14 10:45:03 +01:00
12 lines
124 B
C
12 lines
124 B
C
#include <stdio.h>
|
|
|
|
int uwu()
|
|
{
|
|
return 1;
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
printf("%d", uwu());
|
|
return 0;
|
|
}
|