Measures Concepts
GitHub icon

Cobra

Cobra - Programming language

< >

Cobra is an open source programming language created in 2006 by Charles Esterbrook.

#666on PLDB 18Years Old

Try now: TIO

Cobra is a general-purpose, object-oriented programming language. Cobra is designed by Charles Esterbrook, and runs on the Microsoft .NET and Mono platforms. It is strongly influenced by Python, C#, Eiffel, Objective-C, and other programming languages. Read more on Wikipedia...


Example from hello-world:
class Hello def main print 'Hello World'
"""Hello world in Cobra""" class Hello def main print 'Hello, world.'
Example from Wikipedia:
class Person var _name as String var _age as int cue init(name as String, age as int) _name, _age = name, age def toString as String is override return 'My name is [_name] and I am [_age] years old'

Language features

Feature Supported Token Example
Strings ✓ '
'Hello world'
Print() Debugging ✓ print
Semantic Indentation ✓

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