edward

An extensible POSIX-compatible implementation of the ed(1) text editor

git clone https://git.8pit.net/edward.git

 1#include <stdio.h>
 2
 3void
 4main_loop(void)
 5{
 6	/* … */
 7}
 8
 9int
10main(void)
11{
12	puts("Hello, World");
13	return 0;
14}