This is the main source code repository for the Dove Programming Language (try it online). It contains the interpreter and standard library.
Dove:
for name in ("foo", "bar") {
print "Hello! " + name
}
Output:
"Hello! foo"
"Hello! bar"
Take a look at the Dove docs β https://dove-lang.github.io/docs/
To start using Dove, please follow these steps:
Visit β https://dove-lang.com/playground.
- Install the Dove interpreter binary β v0.1.2
- Navigate to the file directory.
cd [DIRECTORY]
- Run the REPL, or run a dove file directly.
# Run REPL
dove
# Run file
dove example.dove
-
Install the Dove interpreter binary β v0.1.2
-
Navigate to the file directory.
cd [DIRECTORY]
- Run the REPL, or run a dove file directly.
# Run REPL
dove.exe
# Run file
dove.exe example.dove