Marco Mastropaolo преди 11 години
родител
ревизия
aed913bcce
променени са 1 файла, в които са добавени 4 реда и са изтрити 25 реда
  1. 4 25
      README.md

+ 4 - 25
README.md

@@ -4,32 +4,9 @@ http://www.moonsharp.org
 
 
 
 
 A Lua interpreter written entirely in C# for the .NET, Mono, Xamarin and Unity3D platforms.
 A Lua interpreter written entirely in C# for the .NET, Mono, Xamarin and Unity3D platforms.
-It aims at language compatibility with Lua 5.2 and, in the long run, some nifty additions.
+It is 99% compatible with Lua 5.2 (with a few exceptions, like goto statements and hex floats) and includes some nifty addition, plus a tight integration with .NET code.
 
 
-
-**Project Status**
-
-* All Lua 5.2 language constructs are implemented, except goto/labels. See [the wiki](https://github.com/xanathar/moonsharp/wiki/Differences-between-Moon%23-and-Lua) for known differences.
-* Development of the standard library is ongoing. Updated situation on [googledocs](https://docs.google.com/spreadsheets/d/1Iw8YMSY8N0tGEyaD-vmmJnlaQ5te4P4CqTXYpEiSEL8/edit#gid=0)
-* Moon#/.NET integration is at quite a crude level. Will be started soon.
-* The debugger "almost" works on the bytecode level. Source level is not yet supported. Currently as a Windows.Forms application, a better solution might be planned sooner or later - TBC
-* Coroutines and state-save support has not been started yet.
-
-
-**Roadmap**
-
-* support for all core language structures (see documentation for differences between Moon# and Lua)
-* compatibility with all applyable tests in Lua Test Suite (http://www.lua.org/tests/5.2/) and Lua Test More (http://fperrad.github.io/lua-TestMore/). Most tests of the suite are passing.
-* optimizations 
-* better integration between Lua/Moon# tables and CLR objects
-* debugger embeddable in applications using Moon# 
-* REPL interpreter
-* standard library 
-
-**Associated Resources**
-
-* You can see the future backlog and status on [https://www.pivotaltracker.com/n/projects/1082626](https://www.pivotaltracker.com/n/projects/1082626 "Moon# Backlog on Pivotal Tracker")
-* You can read some posts about the design choices of Moon# on my blog: http://www.mastropaolo.com/category/programming/moonsharp/
+Please see http://www.moonsharp.org for downloads, infos, tutorials, etc.
 
 
 
 
 **License**
 **License**
@@ -37,3 +14,5 @@ It aims at language compatibility with Lua 5.2 and, in the long run, some nifty
 The program and libraries are released under a 3-clause BSD license - see the license section.
 The program and libraries are released under a 3-clause BSD license - see the license section.
 
 
 This work is based on the ANTLR4 Lua grammar Copyright (c) 2013, Kazunori Sakamoto.
 This work is based on the ANTLR4 Lua grammar Copyright (c) 2013, Kazunori Sakamoto.
+
+Parts of the string library are based on the UniLua project.