Examples
algebraic-datatypes
counter
hello-world
partial-application
silly-reflection
About
#include <stdio.h> @define greet { ( $name ) => ( printf("Hello %s!", $name) ) } int main(int argc, char* argv[]) { greet "world"; return 0; }