Zimbu is an experimental programming language designed by Bram Moolenaar
Bram Moolenaar
Bram Moolenaar is an active member of the open source software community. He is the author of Vim, a text editor that is very popular among programmers and power users....
, the writer of vim. It was released in November 2009.
Examples
The Hello World program, hello.zu:
FUNC int MAIN
IO.write("Hello, World!\n")
RETURN 0
}
Here is another example:
FUNC int MAIN
VAR pipe = THREAD.eval({ => "Hello from the thread" })
# Do something else
IO.writeLine(pipe.read)
}
The source of this article is wikipedia, the free encyclopedia. The text of this article is licensed under the GFDL.