My own program language write with Ruby

I have created a program language which wrote with Ruby.

It’s only for fun. Is there someone interested in it?

Following is a example of it.

; This is a comment
; define a function
fun1 = (a, b)->
a1 = a + b
a1 * a1
end

say fun1 1, 2
say ARGV

The project in Github: GitHub - wusuopu/meri: A dynamically typed programming language runs on Ruby