Skip to content

Instantly share code, notes, and snippets.

@iwillspeak
Last active October 12, 2021 05:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iwillspeak/efc9342c63c07a2a763dd814f555f7ee to your computer and use it in GitHub Desktop.
Save iwillspeak/efc9342c63c07a2a763dd814f555f7ee to your computer and use it in GitHub Desktop.
<Project Sdk="Feersum.Sdk/0.2.1">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="hello.scm" />
</ItemGroup>
</Project>
(import (scheme write))
(define (whoop thing)
(display "whoop! ")
(display thing)
(newline))
(whoop "World")
(whoop "SCHEME!")
@iwillspeak
Copy link
Author

Compile and run with the dotnet command line tool:

$ dotnet build
$ dotnet run
whoop! World
whoop! SCHEME!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment