Skip to content

Commit

Permalink
Chore: Add slug and tags to config.json (#142)
Browse files Browse the repository at this point in the history
Closes #118
Closes #137
  • Loading branch information
0x647262 authored Jun 12, 2021
1 parent 0a1eabd commit 2c6e085
Showing 1 changed file with 50 additions and 2 deletions.
52 changes: 50 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,54 @@
]
},
"concepts": [],
"key_features": [],
"tags": []
"key_features": [
{
"title": "Expressive",
"content": "Support for multiple programming paradigms, with strong metaprogramming capabilities.",
"icon": ""
},
{
"title": "Fast",
"content": "D programs are compiled, leading to faster execution times than interpreted languages.",
"icon": ""
},
{
"title": "Safe",
"content": "Functions tagged as @safe restrict them to a memory-safe subset of D.",
"icon": ""
},
{
"title": "Language Interop",
"content": "Seamlessly embed C and C++ into your D projects, giving you access to millions of libraries.",
"icon": ""
},
{
"title": "Better C",
"content": "Integrate D into C projects using the -betterC compilation flag.",
"icon": ""
},
{
"title": "Optional GC",
"content": "Leave it enabled when it's needed, and disable it when it's not.",
"icon": ""
}
],
"tags": [
"paradigm/functional",
"paradigm/imperative",
"paradigm/object_oriented",
"typing/static",
"typing/strong",
"execution_mode/compiled",
"platform/windows",
"platform/mac",
"platform/linux",
"used_for/backends",
"used_for/cross_platform_development",
"used_for/embedded_systems",
"used_for/financial_systems",
"used_for/games",
"used_for/guis",
"used_for/scientific_calculations"
]
}

0 comments on commit 2c6e085

Please sign in to comment.