Genie is an open source programming language created in 2008 by Jamie McCracken.
#744on PLDB | 16Years Old | 21Repos |
Genie is a modern, general-purpose high-level programming language in active development since 2008. It was designed as an alternative, simpler and cleaner dialect for the Vala compiler, while preserving the same functionality of the Vala language. Genie uses the same compiler and libraries as Vala; the two can indeed be used alongside each other. Read more on Wikipedia...
init
print( "Hello, World!" )
[indent=2]
init
print "Hello World"
class Sample
def run()
stdout.printf("Hello, world!\n")
init
var sample = new Sample()
sample.run()
Feature | Supported | Example | Token |
---|---|---|---|
Strings | ✓ | "Hello world" | " |
Print() Debugging | ✓ | ||
Semantic Indentation | ✓ | ||
Comments | ✓ |