8000 GitHub - bobicloudvision/davi
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

bobicloudvision/davi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Davi lang

Run your davi lang code

 ./davi samples/test.davi

Input file example

// Function and Variable Declaration
i = 1
function noChange() {
    i = 5
    echo(i)
}
echo(i)
noChange()
echo(i)


// If statement
a = 10
if a > 5 {
    echo("large")
} else if a < 0 {
    echo("negative")
} else {
    echo("small")
}

Output

1
5
1
large

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0