IronScheme alternatives and similar packages
Based on the "Compiler" category.
Alternatively, view IronScheme alternatives based on common mentions on social networks and blogs.
-
Roslyn
The .NET Compiler Platform ("Roslyn") provides open-source C# and Visual Basic compilers with rich code analysis APIs. It enables building code analysis tools with the same APIs that are used by Visual Studio. -
Netjs
.NET to TypeScript and JavaScript compiler. Portable Class Libraries work great for this. You can even pass EXEs. -
Nemerle
Nemerle is a high-level statically-typed programming language for the .NET platform. It offers functional, object-oriented and imperative features. It has a simple C#-like syntax and a powerful meta-programming system. http://nemerle.org/About -
Roslyn-linq-rewrite
Compiles C# code by first rewriting the syntax trees of LINQ expressions using plain procedural code, minimizing allocations and dynamic dispatch.
Pixel-Perfect Multi-Platform Applications with C# and XAML
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of IronScheme or a related project?
README
IronScheme
IronScheme aims to be a R6RS conforming Scheme-like implementation based on the Microsoft DLR.
IronScheme implements over 99% of the R6RS specification and specified behavior.
Building
- Open the
IronSchemeCore.sln
file in VS2019 - Set startup project as
IronScheme.Console
Alternatively, using the build.cmd
batchfile in the IronScheme directory.
Running on Windows
Run the IronScheme.Console.exe
for the runtime and bitness you want to target.
V2 requires .NET3.5. V4 requires requires .NET4.0 or higher. Pretty much any running Windows should have one or both of those.
You can also run it with .NET Core, which has limited compilation functionality.
Running on Linux/MacOS
# get .NET Core if you dont have it already
wget https://dot.net/v1/dotnet-install.sh
chmod +x dotnet-install.sh
dotnet-install.sh --channel Current --runtime dotnet # v2.1+
export -p PATH="$HOME/.dotnet:$PATH"
# Download
wget https://github.com/IronScheme/IronScheme/releases/download/<latest release>.zip
unzip <latest release>.zip
cd IronScheme
alias ironscheme="dotnet IronScheme.ConsoleCore.dll"
# if you prefer Mono
# alias ironscheme="mono IronScheme.Console-v4.exe"
ironscheme
Library usage
Reference IronScheme.dll
from your project.
using IronScheme;
class Program
{
static void Main(string[] args)
{
"(display 'hello-world)".Eval();
}
}
Running tests
After building, you can use NUnit to run IronScheme.Tests.dll
in the IronScheme.Console
bin folder.
There is also a batch file in the IronScheme directory called test.cmd
. You can pass the /verbose
to the batch file to see complete output in case of failures.
Note
Make sure that peverify
is in your PATH. The test fixtures are designed to execute in a specfic order. The tests will not take less than 6 minutes to complete.
Nuget feed
On Nuget.org and CI-builds on https://ci.appveyor.com/nuget/ironscheme
Issues
Please @leppie in your issues/PR's, else I will probably not know about it. I do not actively monitor Github. If I still dont answers, nag me on Twitter, also @leppie.
Other
- http://ironscheme.codeplex.com/ (old site)