PCF-Compiler
PCF-Compiler copied to clipboard
A compiler for PCF (Programming Language for Computable Functions) Ported from F# to Scala
Results
2
PCF-Compiler issues
Sort by
recently updated
recently updated
newest added
Some issues I've noticed: - Indentation in https://github.com/anicolaspp/PCF-Compiler/blob/master/src/main/scala/App.scala - Why commit any `.class` files? Better remove them and ban `.class` in a project-wide `.gitignore` file. - Class names are conventionally...
How do you prevent variable capture in substitution? I think your code would cause capture with (for instance) `subst("fun x -> y", "y", "x z")` (where I write concrete syntax...