Top 1K Features Creators Events Podcasts Books Extensions Interviews Blog Explorer CSV

concurnas

< >

concurnas is a programming language created in 2018.

#1818on PLDB 6Years Old
Homepage · Twitter


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 Example Token
Strings ✓ "Hello world" "
Print() Debugging ✓ System.out.println
- Build the next great programming language · Add · About · Search · Keywords · Livestreams · Labs · Resources · Acknowledgements · Part of the World Wide Scroll