From 25050db4bbded3e4fcadca7c1850fabb7838c895 Mon Sep 17 00:00:00 2001 From: Luca Ferranti <49938764+lucaferranti@users.noreply.github.com> Date: Tue, 5 Mar 2024 09:23:40 +0200 Subject: [PATCH] add key features (#82) * add key features * fix keyword name * typo --- config.json | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/config.json b/config.json index 65eca0f..208dd73 100644 --- a/config.json +++ b/config.json @@ -218,5 +218,37 @@ "runtime/standalone_executable", "typing/static", "used_for/scientific_calculations" + ], + "key_features": [ + { + "title": "Open source", + "content": "Chapel is open source and has a welcoming and open community", + "icon": "community" + }, + { + "title": "Parallel", + "content": "Chapel makes parallel programming easy and fun", + "icon": "concurrency" + }, + { + "title": "Scalable", + "content": "runs on laptops, clusters, the cloud, and HPC systems", + "icon": "powerful" + }, + { + "title": "Fast", + "content": "performance competes with or beats C/C++ & MPI & OpenMP", + "icon": "fast" + }, + { + "title": "Expressive", + "content": "Chapel code is easy to read and easy to write", + "icon": "expressive" + }, + { + "title": "Scientific", + "content": "Chapel is a great fit for applications involving heavy computations or big data analysis", + "icon": "scientific" + } ] }