Category:OPL: Difference between revisions

From Rosetta Code
Content added Content deleted
(OPL Organiser Programming Language. Found on Psion prtable computers in produced in the 1980s and 1990s. Now called Open Programming Language - opl-dev.)
 
m (Added link to official site)
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{stub}}
FIBBON:
{{language
REM Fibonacci sequence is generated to the Organiser II floating point variable limit.
|site=http://opl-dev.sourceforge.net/}}
REM This method was derived from (not copied...) the original OPL manual that came with the CM and XP in the mid 1980s.
REM CLEAR/ON key quits.
REM Mikesan - http://forum.psion2.org/
LOCAL A,B,C
A=1 :B=1 :C=1
PRINT A,
DO
C=A+B
A=B
B=C
PRINT A,
UNTIL GET=1

Latest revision as of 21:47, 24 March 2014

This page is a stub. It needs more information! You can help Rosetta Code by filling it in!
Language
OPL
This programming language may be used to instruct a computer to perform a task.
Official website
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using OPL.

Subcategories

This category has the following 3 subcategories, out of 3 total.

Pages in category "OPL"

The following 3 pages are in this category, out of 3 total.