Difference between revisions of "GPU621/Chapel"

From CDOT Wiki
Jump to: navigation, search
(Variables =)
Line 9: Line 9:
  
 
== Basic ==
 
== Basic ==
= Variables ==
+
= Variables =
 
Variables are declared with the var keyword. Variable declarations must have a type, initializer, or both.
 
Variables are declared with the var keyword. Variable declarations must have a type, initializer, or both.
var myVariable1: int;
 
writeln("myVariable1 = ", myVariable1);
 
  
 +
var myVariable1: int;//
 +
writeln("myVariable1 = ", myVariable1);//
  
 
= Reference =
 
= Reference =

Revision as of 22:53, 29 November 2022

Introduction

The Chapel is an open-source programming language designed for productive parallel computing at scale. The Chapel compiler is written in C and C++14. The backend is LLVM, written in C++. The goal of Chapel is to improve the programmability of parallel computers in general.

Installation

Basic

Variables

Variables are declared with the var keyword. Variable declarations must have a type, initializer, or both.

var myVariable1: int;// writeln("myVariable1 = ", myVariable1);//

Reference