Oberon+ プログラミング言語
A lean, statically typed, compiled, general-purpose, procedural, object-oriented, and garbage collected programming language in the Pascal tradition, with support for generic programming View it on GitHub Code Examples Procedural Programming module Fibonacci proc calc*(n : integer): integer var a, b: integer // comma is optional begin if n > 1 then a := calc(n -…