Compare commits

..

No commits in common. "e767a6eafc4f432e5b66330a6698838ff269108a" and "adf4136c108130be0d7b9d8fb8585a66c168b16b" have entirely different histories.

3 changed files with 0 additions and 32 deletions

View File

@ -330,7 +330,6 @@ Content-Type: application/json
`erlang`,
`file`,
`forte`,
`forth`,
`fortran`,
`freebasic`,
`fsharp.net`,

View File

@ -64,5 +64,4 @@ args: {
"llvm_ir" = import ./llvm_ir.nix args;
"mono-basic" = import ./mono-basic.nix args;
"j" = import ./j.nix args;
"forth" = import ./forth.nix args;
}

View File

@ -1,30 +0,0 @@
{pkgs, piston, ...}:
let
pkg = pkgs.gforth;
in piston.mkRuntime {
language = "forth";
version = pkg.version;
runtime = "forth";
aliases = [
"gforth"
];
run = ''
${pkg}/bin/gforth "$@"
'';
tests = [
(piston.mkTest {
files = {
"test.forth" = ''
.( OK) bye
'';
};
args = [];
stdin = "";
packages = [];
main = "test.forth";
})
];
}