mirror of
				https://github.com/swaywm/sway.git
				synced 2025-10-29 05:40:18 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			159 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 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;
 | |
| }
 | 
