From c38cdbf278d62fda8b2a763ed21e59f856596173 Mon Sep 17 00:00:00 2001 From: Lewis Van Winkle Date: Wed, 7 Dec 2016 11:34:50 -0600 Subject: [PATCH] Added building instructions --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 814eb20..d60db4c 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,11 @@ the standard C math functions and runtime binding of variables. - Easy to use and integrate with your code - Thread-safe, provided that your *malloc* is. +##Building + +TinyExpr is self-contained in two files: `tinyexpr.c` and `tinyexpr.h`. To use +TinyExpr, simply add those two files to your project. + ##Short Example Here is a minimal example to evaluate an expression at runtime.