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 key features #148

Closed
wants to merge 1 commit into from
Closed
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
34 changes: 33 additions & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,42 @@
]
},
"concepts": [],
"key_features": [],
"key_features": [
{
"icon": "interop",
"title": "Concatenative",
"content": "Factor is a language of the concatenative paradigm, like Forth or Postscript."
},
{
"icon": "multi-paradigm",
"title": "Multi-paradigm",
"content": "Factor includes features from object-oriented programming and functional programming."
},
{
"icon": "documentation",
"title": "Embedded documentation",
"content": "Factor has a very powerful documentation system available in its custom IDE and online."
},
{
"icon": "expressive",
"title": "Concise",
"content": "Factor lets you describe complex programs with simple combinations of very short functions."
},
{
"icon": "extensible",
"title": "Extremely extensible",
"content": "Most of Factor's syntax is actually defined with user-accessible features."
},
{
"icon": "concurrency",
"title": "Time-traveling debugger",
"content": "Factor's debugger lets you reverse the course of execution from an error."
},
],
"tags": [
"paradigm/functional",
"paradigm/object_oriented",
"paradigm/declarative",
"typing/dynamic",
"typing/strong",
"execution_mode/compiled",
Expand Down