From 3a9d2932b6a4ae677b9be13a2233869e8da3f56e Mon Sep 17 00:00:00 2001 From: Daniel Kang Date: Sat, 12 Jan 2019 22:09:43 -0800 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6257d55..527a98a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Tengo is an embedded script language for Go. \>> **Try Tengo in online [Playground](https://tengolang.com/)** << -## Language Features +## Features - Simple and intuitive syntax - Dynamically typed with type coercions @@ -191,9 +191,9 @@ for k, v in {k1: 1, k2: 2} { // map: key and value } ``` -## Embed Tengo in Go +## Tengo in Go -... +To embed and execute Tengo code in your Go codebase, ... ```golang import "github.com/d5/tengo/script" @@ -219,7 +219,7 @@ func main() { ... -## Tengo as a Standalone Language +## Tengo Standalone Although Tengo is designed as an embedded script language for Go, it can be compiled and executed as native binary without any Go code using `tengo` tool.