Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

concurnas

< >

concurnas is a programming language created in 2018.

#1766on PLDB 6Years Old


Example from the web:
def gcd(x int, y int){//greatest common divisor of two integers while(y){ (x, y) = (y, x mod y) } x } calc1 = gcd(8, 20)!//run this calculation in a isolate calc2 = gcd(6, 45)!//run this calculation in a separate isolate calc3 = calc1 if calc1 > calc2 else calc2 //^^^ wait for the results of calc1 and calc2 before assigning calc3
Example from hello-world:
System.out.println("Hello World")

Language features

Feature Supported Token Example
Strings ✓ "
"Hello world"
Print() Debugging ✓ System.out.println

View source

- Build the next great programming language · About · Acknowledgements · Extensions · Day 630 · Donate · feedback@pldb.io