Work on JSON Schema docstrings
This commit is contained in:
parent
2923aaef65
commit
f76518a8b6
|
@ -403,9 +403,39 @@ properties:
|
||||||
anyOf:
|
anyOf:
|
||||||
# TODO: fill in documentation
|
# TODO: fill in documentation
|
||||||
- const: assembly
|
- const: assembly
|
||||||
|
description: |
|
||||||
|
A language that uses assembly syntax of some kind,
|
||||||
|
characterized by sequential, atomic statements
|
||||||
|
without advanced control flow.
|
||||||
|
examples:
|
||||||
|
- "x86"
|
||||||
|
- "riscv"
|
||||||
|
- "jasmin"
|
||||||
- const: basic
|
- const: basic
|
||||||
|
description: |
|
||||||
|
A language that uses BASIC-derived syntax,
|
||||||
|
characterized by a lack of syntactic control
|
||||||
|
characters and (often) uppercase keywords.
|
||||||
|
examples:
|
||||||
|
- cmd
|
||||||
|
- cobol
|
||||||
- const: c
|
- const: c
|
||||||
|
description: |
|
||||||
|
A language that uses C-derived syntax, characterized
|
||||||
|
by ubiquitous curly braces and semicolons for
|
||||||
|
control flow scoping.
|
||||||
|
examples:
|
||||||
|
- objectivec
|
||||||
|
- java
|
||||||
- const: golf
|
- const: golf
|
||||||
|
description: |
|
||||||
|
A language that uses syntax remniscent of code
|
||||||
|
golfing, characterized by single-letter or otherwise
|
||||||
|
very short commands and control flow syntax.
|
||||||
|
examples:
|
||||||
|
- befunge
|
||||||
|
- fishlang
|
||||||
|
- apl
|
||||||
- const: haskell
|
- const: haskell
|
||||||
- const: lisp
|
- const: lisp
|
||||||
- const: pascal
|
- const: pascal
|
||||||
|
|
Loading…
Reference in New Issue