From a9aa8dc673083724bae0fd99170c0a0d9c9f8196 Mon Sep 17 00:00:00 2001 From: Daniel Kang Date: Wed, 30 Jan 2019 01:05:35 -0800 Subject: [PATCH] update documentation --- README.md | 21 --------------------- docs/tengo-cli.md | 2 ++ 2 files changed, 2 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index f949b77b..d72a5831 100644 --- a/README.md +++ b/README.md @@ -72,24 +72,3 @@ _* See [here](https://github.com/d5/tengobench) for commands/codes used_ - [Interoperability](https://github.com/d5/tengo/blob/master/docs/interoperability.md) - [Tengo CLI](https://github.com/d5/tengo/blob/master/docs/tengo-cli.md) - [Standard Library](https://github.com/d5/tengo/blob/master/docs/stdlib.md) - -## Roadmap - -### v0. _(Current)_ - -Things are experimental, and, the focus is on the **core language features**, **stability**, **basic interoperability**, and the **performance optimization**. - -### [v1. Tengo as a Script Language](https://github.com/d5/tengo/labels/v1.0) - -This will be the first _versioned_ release, and, the main goal for v1 is to make Tengo as a _fast_ embeddable script language for Go, which means Tengo will be comparable to other Go-based script languages such as [Starlark](https://github.com/google/starlark-go), [Lua](https://github.com/Shopify/go-lua) [VM](https://github.com/yuin/gopher-lua)s, and [other](https://github.com/robertkrimen/otto) [interpreter](https://github.com/mattn/anko)s. - -- Interoperability with Go code -- Sandbox environment -- More language features - -### v2. Tengo as a Standalone Language - -- Language-level concurrency support -- Tengo Standard Libraries -- Native executables compilation -- More language features diff --git a/docs/tengo-cli.md b/docs/tengo-cli.md index 337808b1..d72d2c71 100644 --- a/docs/tengo-cli.md +++ b/docs/tengo-cli.md @@ -10,6 +10,8 @@ To install `tengo` tool, run: go get github.com/d5/tengo/cmd/tengo ``` +Or, you can download the precompiled binaries from [here](https://github.com/d5/tengo/releases/latest). + ## Compiling and Executing Tengo Code You can directly execute the Tengo source code by running `tengo` tool with your Tengo source file (`*.tengo`).