Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add paradigm/array paradigm #499

Merged
merged 1 commit into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions building/tooling/analyzers/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Using a common set of tags will allow us to do some nifty things, like cross-tra

| Tag | Description |
| -------------------------- | ---------------------------------------------------------------- |
| `paradigm:array` | uses [array programming][array-programming]. |
| `paradigm:declarative` | uses [declarative programming][declarative-programming]. |
| `paradigm:functional` | uses [functional programming][functional-programming]. |
| `paradigm:generic` | uses [generic programming][generic-programming]. |
Expand Down Expand Up @@ -328,6 +329,7 @@ Using a common set of tags will allow us to do some nifty things, like cross-tra

As this category is language-specific, there are no commonly used tags here.

[array-programming]: https://en.wikipedia.org/wiki/Array_programming
[declarative-programming]: https://en.wikipedia.org/wiki/Declarative_programming
[logic-programming]: https://en.wikipedia.org/wiki/Logic_programming
[object-oriented-programming]: https://en.wikipedia.org/wiki/Object-oriented_programming
Expand Down
1 change: 1 addition & 0 deletions building/tracks/config-json.md
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ Tags are specified in the top-level `tags` field which is defined as an array of

### Paradigms

- `paradigm/array`: the language is an array programming language
- `paradigm/declarative`: the language supports a declarative style of programming
- `paradigm/functional`: the language supports a function style of programming
- `paradigm/imperative`: the language supports an imperative style of programming
Expand Down