From 7aa32879814fb7c5b77f08e67d1eff62565b088f Mon Sep 17 00:00:00 2001 From: Avril Date: Fri, 19 Mar 2021 20:38:49 +0000 Subject: [PATCH] update README --- README | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README b/README index 6755f7b..1804942 100644 --- a/README +++ b/README @@ -1,5 +1,3 @@ -Example of a contextual state machine implementation in C(++) +Example of a contextual state machine (generator methods) implementation in basic C++, using mostly C constructs. -Goal: - A PoC full C implementation of 'generator' functions in C using the rather janky `_Generic`. - Currently the implementation is in an extremely small subset of C++ using only a few templates to get around C's janky implementation of generics. +See `src/test/main.cpp` for example.