add transpilation condition
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
LordMZTE 2021-03-30 21:50:11 +02:00
parent e20bd612c5
commit 23d36d8705
2 changed files with 14 additions and 2 deletions

8
de.mmd
View file

@ -23,7 +23,13 @@ F --> |Nein| Schlecht
F --> |Ja| G([Wurde die Sprache von Microsoft entwickelt?])
G --> |Ja| Schlecht
G --> |Nein| H([Läuft die Sprache nur in einer VM?])
G --> |Nein| N([Wird die Sprache zu einer anderern transpiliert?])
N --> |Ja| O(["Kommen alle Targets der sprache in diesem Test bei #quot;schlecht#quot; an?"])
N --> |Nein| H([Läuft die Sprache nur in einer VM?])
O --> |Ja| Ok
O --> |Nein| SGut
H --> |Ja| L([Wird die Sprache für embedded-scripting verwendet?])
H --> |Nein| M([Hat die Sprache einen Garbage Collector?])

8
en.mmd
View file

@ -23,7 +23,13 @@ F --> |No| Bad
F --> |Yes| G([Has the language been developed by Microsoft?])
G --> |Yes| Bad
G --> |No| H([Does the language only run in a VM?])
G --> |No| N([Is the language transpiled to another?])
N --> |Yes| O(["Do all targets of the langauge arrive at #quot;Bad#quot; in this test?"])
N --> |No| H([Does the language only run in a VM?])
O --> |Yes| Ok
O --> |No| VGood
H --> |Yes| L([Is the language used for embedded scripting?])
H --> |No| M([Does the language have a Garbage Collector?])