Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)