add notes on Python, C# implementations to BUILDING

FossilOrigin-Name: da06b8a3ce746eff599c8bc9b026b74b8b66695e214e1246950aa62d24213b2b
This commit is contained in:
crc 2019-02-07 02:21:50 +00:00
parent 37bc3b8d10
commit 6bc6d0ced0

View file

@ -143,3 +143,27 @@ Building:
This will require a copy of the `ngaImage` in the
current directory.
## Python: retro.py
This is an implementation of `retro-repl` in Python. As
with `retro-repl` it requires the `ngaImage` in the current
directory when starting.
## C#: retro.cs
This is an implementation of `retro-repl` in C#. As with
`retro-repl` it requires the `ngaImage` in the current
directory when starting.
Building:
csc retro.cs
You'll need to make sure your path has the CSC.EXE in it,
or provide a full path to it. Something like this should
reveal the path to use:
dir /s %WINDIR%\CSC.EXE
I've only tested building this using Microsoft's .NET tools.
It should also build and run under Mono.