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

[v3] Add key features to config.json #680

Merged
merged 1 commit into from
Jun 10, 2021
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 @@ -1248,6 +1248,37 @@
]
},
"concepts": [],
"key_features": [],
"key_features": [
{
"title": "Modern",
"content": "Scala is relatively young, and design decisions are aimed to address criticisms of Java.",
"icon": "features-functional"
},
{
"title": "Multi-paradigm",
"content": "Scala combines object-oriented and functional programming in one concise, high-level language.",
"icon": "features-oop"
},
{
"title": "Statically typed",
"content": "Scala is statically typed and supports type inference, catching errors early.",
"icon": "features-strongly-typed"
},
{
"title": "Lazy computation",
"content": "Scala evaluates expressions only when required, this increases performance.",
"icon": "features-lazy"
},
{
"title": "Immutability",
"content": "Scala uses an immutability concept. Each declared variable is immutable by default.",
"icon": "features-declarative"
},
{
"title": "Widely-used",
"content": "Scala is being used by some of the world's tech giants.",
"icon": "features-generic"
}
],
"tags": []
}