The new Release 20.03 is out! You can download binaries for Windows and many major Linux distros here .
#include "el.h"int main(int argc, char* argv[]){ printhw(); return 0;}
#ifndef __EL_H#define __EL_H#include <stdio.h>void printhw(void);#endif
#include "el.h"void printhw(void){ printf("Hello my master\n");}