From 88f1e1e70528bd925b711a898db23ec45a54d9c2 Mon Sep 17 00:00:00 2001 From: Brian Picciano Date: Tue, 28 May 2013 00:30:16 -0300 Subject: [PATCH] Added runtime to the menu --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 6882f3d..c4818ec 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,5 @@ with the language. * [syntax/data structures](/doc/syntax.md) - Ginger is a lisp-based language, so if you know the syntax for the available data structures you know the syntax for the language itself. There's very few data structures, meaning there's minimal syntax. +* [runtime](/doc/runtime.md) - How to structure your ginger data to be runnable by the ginger interpreter. + Includes execution, variable definition, scope, and function definition.