1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-17 10:45:06 +00:00
serenity/Userland/whoami.cpp
2019-05-16 20:18:17 +02:00

8 lines
102 B
C++

#include <stdio.h>
#include <unistd.h>
int main(int, char**)
{
puts(getlogin());
return 0;
}