From 6bc6d0ced0886e34a3d52e1a8749133772efdd0c Mon Sep 17 00:00:00 2001 From: crc Date: Thu, 7 Feb 2019 02:21:50 +0000 Subject: [PATCH] add notes on Python, C# implementations to BUILDING FossilOrigin-Name: da06b8a3ce746eff599c8bc9b026b74b8b66695e214e1246950aa62d24213b2b --- BUILDING.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/BUILDING.md b/BUILDING.md index 11d0c3f..c93dd18 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -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.