ctalk-lang is a programming language created in 1989.
#2421on PLDB | 35Years Old |
The CTalk programming language: a strategic evolution of APL
// When working with the CTalk interpreter,
// every result is printed
2+3;
// = 5
2*3+5*10;
// = 56
// Variables are implicitely declared when
// they are used for the first time
a=2; b=3; a+b;
// = 2
// = 3
// = 5
Feature | Supported | Example | Token |
---|---|---|---|
Comments | ✓ | // A comment | |
Line Comments | ✓ | // A comment | // |
Semantic Indentation | X |