Skip to content
/ o Public

Esoteric stack-oriented programming language for code golf

License

Notifications You must be signed in to change notification settings

phase/o

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b413309 · Mar 25, 2024
Dec 5, 2015
Nov 22, 2015
Nov 19, 2015
Nov 15, 2015
May 2, 2016
Nov 22, 2017
Nov 25, 2015
Jul 23, 2016
Nov 19, 2015
Jul 12, 2016
Jul 9, 2016
Jul 11, 2015
Jul 23, 2016
Nov 13, 2015
May 2, 2016
Nov 11, 2015
Nov 28, 2015
Nov 28, 2015
Nov 19, 2015
Jul 12, 2016
Dec 3, 2022
Nov 14, 2015
Nov 14, 2015

Repository files navigation

O

Build Status Latest Release

O is a esoteric programming language used for CodeGolf. It was inspired by languages such as GolfScript, Pyth, K, and ><>, but it has grown into its own language with many cool features. The current interpreter is written in C. You can find the old Java interpreter on the java-interpreter branch.

All documentation for the language is on ReadTheDocs. You can try the language out online at Heroku.

Examples

Here are some examples of O.

Hello World

"Hello, World!

Try it online

Factorial

H,;]*

Try it online

Cat

i

Try it online

Fibonacci

0J;1Kpj{K:VJ+:KpV:J;}d

Try it online