Measures Concepts
GitHub icon

Ceylon

Ceylon - Programming language

< >

Ceylon is an open source programming language created in 2011 by Gavin King.

Source code:
git clone https://github.com/eclipse/ceylon
#224on PLDB 13Years Old 336Repos

Try now: Riju · TIO

Ceylon is an object-oriented, strongly statically typed programming language with an emphasis on immutability, created by Red Hat. Ceylon programs run on the Java virtual machine (JVM), and can be compiled to JavaScript. The language design focuses on source code readability, predictability, toolability, modularity, and metaprogrammability. Read more on Wikipedia...


Example from Riju:
shared void run() { print("Hello, world!"); }
Example from hello-world:
shared void hello() { print("Hello World"); }
// Hello world in Ceylon print("Hello, World!");
Example from Linguist:
"Test function for Ceylon" by ("Enrique") shared void test() { print("test"); } "Test class for Ceylon" shared class Test(name) satisfies Comparable<Test> { shared String name; shared actual String string = "Test ``name``."; shared actual Comparison compare(Test other) { return name<=>other.name; } }
Example from Wikipedia:
/* The classic Hello World program */ shared void run() { print("Hello, World!"); }

Language features

Feature Supported Token Example
Binary Literals ✓
// \$([01]{4})(_[01]{4})+
Integers ✓
// \d{1,3}(_\d{3})+[kMGTP]?
Floats ✓
// \d{1,3}(_\d{3})+\.\d{1,3}(_\d{3})+[kMGTPmunpf]?
Hexadecimals ✓
// #([0-9a-fA-F]{4})(_[0-9a-fA-F]{4})+
Strings ✓ "
"Hello world"
MultiLine Comments ✓ /* */
/* A comment
*/
Print() Debugging ✓ print
Comments ✓
// A comment
Line Comments ✓ //
// A comment
Type Inference ✓
Static Typing ✓
Operator Overloading ✓
Semantic Indentation X

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout