Files
CuteVirusCollection/dark_screen.c
2016-12-24 21:06:32 +06:00

8 lines
92 B
C

// Simply shuts the system down.
#include <stdlib.h>
main(){
system("shutdown -s");
}