Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/narenkhatwani/chapel-lang-basics
This repository contains the basic code syntax examples of Chapel Language
https://github.com/narenkhatwani/chapel-lang-basics
chapel chapel-language high-performance-computing highperformancecomputing parallel-computing
Last synced: 10 days ago
JSON representation
This repository contains the basic code syntax examples of Chapel Language
- Host: GitHub
- URL: https://github.com/narenkhatwani/chapel-lang-basics
- Owner: narenkhatwani
- Created: 2021-12-03T21:23:04.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-12-11T22:54:11.000Z (about 3 years ago)
- Last Synced: 2024-10-25T09:47:57.392Z (about 2 months ago)
- Topics: chapel, chapel-language, high-performance-computing, highperformancecomputing, parallel-computing
- Language: Chapel
- Homepage:
- Size: 1.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# chapel-lang-basics
## About this Repository
This repository contains the basic code syntax examples of Chapel Language. These codes are also available at [link](http://faculty.knox.edu/dbunde/teaching/chapel/tutorial-1.9.html#About%20this%20Tutorial)## Download Links
Download Chapel from [link](https://chapel-lang.org/download.html)# How to compile and run a Chapel Code
### Step 1:
Running Chapel
```bash
source [Enter your path]/chapel-1.24.1/util/setchplenv.bash
```### Step 2:
Compiling the Code
```bash
chpl -o program program.chpl;
```### Step 3:
Running the Code
```bash
./program
```## Tutorials for Chapel are available at
Click here to redirect -> [link](https://sites.google.com/lbl.gov/cs267-spr2021)