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

Key features in track config #17

Merged
merged 1 commit into from
Mar 23, 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
38 changes: 35 additions & 3 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{
"version": 3,

"language": "Red",
"slug": "red",
"active": false,
Expand All @@ -9,7 +11,6 @@
"analyzer": false
},
"blurb": "Red is a next-generation full stack programming language, strongly inspired by REBOL.",
"version": 3,
"online_editor": {
"indent_style": "tab",
"indent_size": 4
Expand Down Expand Up @@ -72,7 +73,7 @@
{
"slug": "view",
"name": "View",
"blurb": "View is Red's module used for programming grapfical user interface.",
"blurb": "View is Red's module used for programming graphical user interface.",
"uuid": "e09fd445-ad55-4c04-a7f8-fa4b78e1cfbb"
},
{
Expand All @@ -98,7 +99,38 @@
"used_for/guis",
"used_for/scripts"
],
"key_features": [],
"key_features": [
{
"title": "Full-stack",
"content": "Red can be used to create a device driver as well as a GUI application.",
"icon": "features-oop"
},
{
"title": "Lightweight",
"content": "Entire toolchain is about 1.5 MB download, single executable. Low memory footprint.",
"icon": "features-oop"
},
{
"title": "Homoiconic",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I expect that for many programmers, they won't actually know what this will mean. The key features are meant to "sell" a language in a way, getting students interested in the language. I don't know if it is possible to reword this. It's definitely not wrong though, so I'll approve :)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point. It's an important feature, which has big impact on a programming experience, but definitely not a "selling" point. I'll think about something better :-)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps "Code is data" could be a better title?

"content": "Red is its own meta-language and own data-format. Program can operate on it's own code.",
"icon": "features-oop"
},
{
"title": "DSL",
"content": "It's easy to create Domain Specific Languages, dialects and parsers.",
"icon": "features-oop"
},
{
"title": "GUI",
"content": "It's simple as: view [b: base 100x100 button {Draw circle} [b/draw: [pen red circle 50x50 50]]]",
"icon": "features-oop"
},
{
"title": "Reactive",
"content": "Objects can be linked by reactions to reduce size and complexity of program.",
"icon": "features-oop"
}
],
"exercises": {
"concept": [],
"practice": [
Expand Down