+added unicode wiki ref to readme.

This commit is contained in:
Wang Renxin 2016-06-17 11:28:00 +08:00 committed by GitHub
parent 86c20f0609
commit 4da438d67c

View File

@ -43,7 +43,7 @@ MY-BASIC is a dynamic typed programming language with BASIC syntax and has a ver
* **Lightweight** (within memory usage less than 128KB), fast, and cuttable
* With most both retro and modern BASIC syntax
* Case-insensitive tokenization, and many other indelible BASIC feelings
* Unicode support
* [Unicode support](https://github.com/paladin-t/my_basic/wiki/Support-for-Unicode)
* **[Prototype-based programming](https://en.wikipedia.org/wiki/Prototype-based_programming)** (OOP) paradigm, with reflection support
* **[Lambda abstraction](https://en.wikipedia.org/wiki/Anonymous_function)** enhanced functional programming
* **Dynamic typed** integer, float point, string, boolean, user defined data types, etc. with array support
@ -129,6 +129,7 @@ Most of the fundamental topics are mentioned in the [MY-BASIC Quick Reference](M
* [Passes](https://github.com/paladin-t/my_basic/wiki/Passes)
* [Interpreter workflow diagram](https://github.com/paladin-t/my_basic/wiki/Interpreter-workflow-diagram)
* Code with MY-BASIC
* [Support for Unicode](https://github.com/paladin-t/my_basic/wiki/Support-for-Unicode)
* [Import another file](https://github.com/paladin-t/my_basic/wiki/Import-another-file)
* [Module (namespace)](https://github.com/paladin-t/my_basic/wiki/Module-(namespace))
* [Sub routine](https://github.com/paladin-t/my_basic/wiki/Sub-routine)