Vapor (vLang) is a dynamic (but supports a type system) programming language that transpiles down to valid python code.
See more here at the official website: https://mwd1993.github.io/Vapor/index.html
Image Description: Utilizes a standard library (written in Vapor), to make a window/app, stay on top of all other windows and uses cmd line logic (potentially)
Download the Compiler and then run your .vap files like so
vapor_parsor.exe path/to/my_vapor_file.vap args1 arg2 etc
message = "Hello World From Vapor"
'the message is [[message]]'
message = "Hello World From Vapor"
message each word {
'current word is [[word]]'
}
# enumeration
message each word with index {
'current word is [[word]] at loop index [[index]]'
}
message = "Hello World From Vapor"
len(message) > 0 true {
'message has [[len(message)]] words'
}
m do_fizz_buzz() {
range(101) each number {
number % 3 == 0 true {
'Fizz'
continue
}
number % 5 == 0 true {
'FizzBuzz'
continue
}
'[[number]]'
}
-> 'this is a return value'
}
return_value = do_fizz_buzz()