Opal is an open source programming language created in 1994.
#799on PLDB | 30Years Old | 14Repos |
git clone https://github.com/TU-Berlin/opal
OPAL (OPtimized Applicative Language) is a functional programming language first developed at the Technical University of Berlin.. Read more on Wikipedia...
-- Deepak Chopra nonsense text generator
-- see https://github.com/StoneCypher/DeepakChopra_Opal/
starts = ["Experiential truth ", "The physical world ", "Non-judgment ", "Quantum physics "]
middles = ["nurtures an ", "projects onto ", "imparts reality to ", "constructs with "]
qualifiers = ["abundance of ", "the barrier of ", "self-righteous ", "potential "]
finishes = ["marvel.", "choices.", "creativity.", "actions."]
alert starts.sample + middles.sample + qualifiers.sample + finishes.sample
IMPLEMENTATION GCD
IMPORT Nat COMPLETELY
DEF GCD(a,b) == IF a % b = 0 THEN b
ELSE IF a-b < b THEN GCD(b,a-b)
ELSE GCD(a-b,b)
FI
FI
Feature | Supported | Example | Token |
---|---|---|---|
Comments | ✓ | -- A comment | |
Line Comments | ✓ | -- A comment | -- |
Semantic Indentation | X |