Skip to content

williamutbult/emerald-lang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

6 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

emerald

Emerald the programming language

Emerald is an imperative interpreted programming language meant for learners to help grasp the basics of programming.

The language is written in Ruby and features simple, descriptive, keyword-based syntax.

Table of contents

Example

Code
# Countdown
i = 3
for 3 do
    print(i)
    i = i - 1
end for
print("Go!")
Output
3
2
1
Go!

How to run

ruby rules.rb file.emr [-d]

Requires a Ruby installation
Warning: debug [-d] is extremely simple and might break easily!

Contact

@williamutbult

License

GPL-2.0 ยฉ 2018 William Utbult

Releases

No releases published

Packages

No packages published

Languages