Right now this is the only way to run HumanScript
docker build -t my-python-app .
docker run -it --rm --name my-running-app -v "$(pwd)":/app my-python-app
docker exec -it my-running-app /bin/bash
dna examples/hello_world.dna
tell "Hello world!"
ask "What's your name?"
name as String = "Gabriel"
age as Number = 24
greetings as Function with
name as String,
age as Number do
tell name
tell age
end
call greetings "Gabriel", 24
.dna
- HumanScript source code