retroforth/book/Building-Windows
crc f77a98ac3d book: add chapter on arrays
FossilOrigin-Name: 185e75cebe20606ef4ada9d0d723b8cfb13b70d1826339b1283e02e7dd08d923
2019-03-18 19:44:09 +00:00

22 lines
486 B
Text

# Building RETRO on Windows
## 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.