[#24] New language: Dafny

This commit is contained in:
Radon Rosborough 2020-09-27 20:29:00 -07:00
parent 0acb6ed871
commit 6a89992c8d
2 changed files with 15 additions and 0 deletions

View File

@ -849,6 +849,17 @@ void main()
{ {
writeln("Hello, world!"); writeln("Hello, world!");
} }
`,
},
dafny: {
aliases: ["dfy"],
name: "Dafny",
main: "main.dfy",
compile: "dafny main.dfy",
run: "mono main.exe",
template: `method Main() {
print "Hello, world!\\n";
}
`, `,
}, },
dart: { dart: {

View File

@ -106,6 +106,10 @@ crystal
# Curry # Curry
pakcs pakcs
# Dafny
dafny
mono-runtime
# Dart # Dart
dart dart