Maple is a programming language created in 1982.
| #120on PLDB | 44Years Old |
Maple is a symbolic and numeric computing environment, and is also a multi-paradigm programming language. Developed by Maplesoft, Maple also covers other aspects of technical computing, including visualization, data analysis, matrix computation, and connectivity. A toolbox, MapleSim, adds functionality for multidomain physical modeling and code generation.. Read more on Wikipedia...
# Hello World in Maple
>> printf("Hello World!");
eqn:= f(x)-3*Int((x*y+x^2*y^2)*f(y), y=-1..1) = h(x):
intsolve(eqn,f(x));| Feature | Supported | Example | Token |
|---|---|---|---|
| Print() Debugging | ✓ | printf | |
| Line Comments | ✓ | # A comment | # |
| Comments | ✓ | ||
| Case Insensitive Identifiers | X | ||
| Semantic Indentation | X |