This commit is contained in:
parent
82c137d7a8
commit
ae2302bb1d
2 changed files with 37 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
|||
.PHONY: All
|
||||
All: build/de.png build/de.svg
|
||||
All: build/de.png build/de.svg build/en.png build/en.svg
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
|
|
36
en.mmd
Normal file
36
en.mmd
Normal file
|
@ -0,0 +1,36 @@
|
|||
flowchart TD
|
||||
A[Is this programming language good?] --> B([Is the language interpreted?])
|
||||
|
||||
I --> |No| Bad{{The language is bad, dispose of immediately!}}
|
||||
I --> |Yes| J([Is the language used for scripting in a very complex program such as a browser?])
|
||||
|
||||
J --> |Yes| K[\Use VM language\] --> Bad
|
||||
J --> |No| D
|
||||
|
||||
B --> |Yes| I([Is the language used for embedded scripting?])
|
||||
B --> |No| C([Does the language have dynamic types?])
|
||||
|
||||
C --> |Yes| Bad
|
||||
C --> |No| D([Does the language have whitespace-dependant syntax?])
|
||||
|
||||
D --> |Yes| Bad
|
||||
D --> |No| E([Does the language COMPELTELY work on linux?])
|
||||
|
||||
E --> |No| Bad
|
||||
E --> |Yes| F([Is the WHOLE Toolchain FOSS?])
|
||||
|
||||
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?])
|
||||
|
||||
H --> |Yes| L([Is the language used for embedded scripting?])
|
||||
H --> |No| M([Does the language have a Garbage Collector?])
|
||||
|
||||
M --> |Yes| Good{{The language is good}}
|
||||
M --> |No| VGood{{The language is awesome!}}
|
||||
|
||||
L --> |No| Ok{{The language is acceptable}}
|
||||
L --> |Yes| Good
|
||||
|
Loading…
Reference in a new issue