This blog created for F# Advent 2016 (English)
Full source code can be found here
- 2016-12-10
- New performance test - Anthony Lloyd (@AnthonyLloyd) suggested that I compare against Prime.Vmap.
//partial.c | |
/* | |
Author: Frank V. Castellucci | |
Simple example to demonstrate 'partial' application (lambda calculus) | |
of function. | |
Brief Intro: | |
I've created a compiled function language 'CFL' which supports curry/partial | |
application of functions, lambdas and closures. CFL: | |
Is typeless, everything is an OBJ* (see below for simplified) |
This blog created for F# Advent 2016 (English)
Full source code can be found here
/* | |
Put that Line of code somewhere before you initialize the javascript application | |
You can read a Blogpost about that topic here: | |
https://medium.com/shopgate-mobile-commerce/hacking-tvml-4387e65a9b94#.o2onhfgo4 | |
*/ | |
[TVInterfaceFactory sharedInterfaceFactory].extendedInterfaceCreator = [CustomInterfaceCreator new]; |
# gcc -Wall -o match match.c && ./match | |
# | |
#include <stdio.h> | |
#include <string.h> | |
#include <regex.h> | |