Skip to content
Merged
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
33 changes: 32 additions & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,38 @@
]
},
"concepts": [],
"key_features": [],
"key_features": [
{
"title": "Compact",
"content": "Scheme supplies a small number of general-purpose features.",
"icon": "small"
},
{
"title": "Functional",
"content": "Inspired by lambda calculus, scopes and loops are expressed by defining and calling functions.",
"icon": "functional"
},
{
"title": "Suitable for embedding",
"content": "Some applications use Scheme as their extension language.",
"icon": "embeddable"
},
{
"title": "S-expressions",
"content": "Both source code and data are expressed using nested lists.",
"icon": "homoiconic"
},
{
"title": "Numeric tower",
"content": "Scheme supports exact and inexact numbers.",
"icon": "scientific"
},
{
"title": "Hygienic macros",
"content": "Scheme supports hygienic macros, allowing the syntax to be extended reliably.",
"icon": "extensible"
}
],
"tags": [
"paradigm/functional",
"typing/dynamic",
Expand Down