mirror of
https://github.com/NickHu/sway
synced 2025-01-15 15:41:59 +01:00
12 lines
159 B
C
12 lines
159 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
void sway_terminate(void) {
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
|
int main(int argc, const char **argv) {
|
||
|
printf("Hello world!");
|
||
|
return 0;
|
||
|
}
|