[#24] New language: Ratfor

This commit is contained in:
Radon Rosborough 2020-10-03 11:16:12 -07:00
parent 6cfbc5bc95
commit f79d3ef75f
2 changed files with 14 additions and 0 deletions

View File

@ -2711,6 +2711,16 @@ x`,
main: "main.rap",
run: "rapira main.rap",
template: `вывод: "Hello, world!"
`,
},
ratfor: {
aliases: ["rationalfortran"],
name: "Ratfor",
main: "main.r",
compile: "ratfor main.r -o main.f && flang main.f -o main",
run: "./main",
template: `print *, 'Hello, world!'
end
`,
},
reasonml: {

View File

@ -108,6 +108,10 @@ racket
# Rapira
clang
# Ratfor
flang
ratfor
# Redis
redis