fix errors in README.md

This commit is contained in:
ValKmjolnir 2022-01-22 22:19:14 +08:00
parent 2f455c52c1
commit 479e5a2c52
1 changed files with 38 additions and 38 deletions

View File

@ -2,44 +2,44 @@
## Contents ## Contents
* [Introduction](#Introduction) * [Introduction](#introduction)
* [Why Writing Nasal Interpreter](#Why-Writing-Nasal-Interpreter) * [Why Writing Nasal Interpreter](#why-writing-nasal-interpreter)
* [Compile](#How-to-Compile) * [Compile](#how-to-compile)
* [Usage](#How-to-Use) * [Usage](#how-to-use)
* [Parser](#Parser) * [Parser](#parser)
* [v1.0](#Version-1.0-parser-(last-update-2019/10/14)) * [v1.0](#version-10-parser-last-update-20191014)
* [Abstract Syntax Tree](#Abstract-Syntax-Tree) * [Abstract Syntax Tree](#abstract-syntax-tree)
* [v1.2](#Version-1.2-ast-(last-update-2019/10/31)) * [v1.2](#version-12-ast-last-update-20191031)
* [v2.0](#Version-2.0-ast-(last-update-2020/8/31)) * [v2.0](#version-20-ast-last-update-2020831)
* [v3.0](#Version-3.0-ast-(last-update-2020/10/23)) * [v3.0](#version-30-ast-last-update-20201023)
* [v5.0](#Version-5.0-ast-(last-update-2021/3/7)) * [v5.0](#version-50-ast-last-update-202137)
* [Bytecode VM](#Bytecode-Virtual-Machine) * [Bytecode VM](#bytecode-virtual-machine)
* [v4.0](#Version-4.0-vm-(last-update-2020/12/17)) * [v4.0](#version-40-vm-last-update-20201217)
* [v5.0](#Version-5.0-vm-(last-update-2021/3/7)) * [v5.0](#version-50-vm-last-update-202137)
* [v6.0](#Version-6.0-vm-(last-update-2021/6/1)) * [v6.0](#version-60-vm-last-update-202161)
* [v6.5](#Version-6.5-vm-(last-update-2021/6/24)) * [v6.5](#version-65-vm-last-update-2021624)
* [v7.0](#Version-7.0-vm-(last-update-2021/10/8)) * [v7.0](#version-70-vm-last-update-2021108)
* [v8.0](#Version-8.0-vm-(latest)) * [v8.0](#version-80-vm-latest)
* [Benchmark](#Benchmark) * [Benchmark](#benchmark)
* [v6.5 (i5-8250U windows 10)](#Version-6.5-(i5-8250U-windows10-2021/6/19)) * [v6.5 (i5-8250U windows 10)](#version-65-i5-8250u-windows10-2021619)
* [v6.5 (i5-8250U ubuntu-WSL)](#Version-7.0-(i5-8250U-ubuntu-WSL-on-windows10-2021/6/29)) * [v6.5 (i5-8250U ubuntu-WSL)](#version-70-i5-8250u-ubuntu-wsl-on-windows10-2021629)
* [Tutorial](#Simple-Tutorial) * [Tutorial](#simple-tutorial)
* [basic value type](#__Basic-Value-Type__) * [basic value type](#basic-value-type)
* [operators](#__Operators__) * [operators](#operators)
* [definition](#__Definition__) * [definition](#definition)
* [multi-assignment](#__Multi-Assignment__) * [multi-assignment](#multi-assignment)
* [conditional expression](#__Conditional-Expression__) * [conditional expression](#conditional-expression)
* [loop](#__Loop__) * [loop](#loop)
* [subvec](#__Subvec__) * [subvec](#subvec)
* [special function call](#__Special-Function-Call__) * [special function call](#special-function-call)
* [lambda](#__Lambda__) * [lambda](#lambda)
* [closure](#__Closure__) * [closure](#closure)
* [trait](#__Trait__) * [trait](#trait)
* [native functions](#__Native-Functions__) * [native functions](#native-functions)
* [modules](#__Modules(This-is-for-library-developers)__) * [modules](#modulesthis-is-for-library-developers)
* [Difference](#Difference-Between-Andy's-Nasal-Interpreter-and-This-Interpreter) * [Difference](#difference-between-andys-nasal-interpreter-and-this-interpreter)
* [Trace Back Info](#Trace-Back-Info) * [Trace Back Info](#trace-back-info)
* [Debugger](#Debugger) * [Debugger](#debugger)
## Introduction ## Introduction