Volant is a general-purpose data-oriented high-level programming language with a focus on speed, power, asynchronicity, and concurrency. Volant is designed with simplicity in mind, allowing both low-level and high-level features with simple and easy to use syntax. Volant is transpiled to c with no or a very thin layer of abstraction over the code you write, which makes it as fast as c in almost all cases.
@AmazingMech2418 An interpreter usually isn't very fast and most people use an intermediary like C or C++. Not everyone knows assembly good enough to generate fast, portable code.
What I call a fake language is when people do this:
class Console:
def writeln(self, str):
print(str)
console = Console()
console.writeln("Woo look at me im a new language based on python")
Volant
Volant
Volant is a general-purpose data-oriented high-level programming language with a focus on speed, power, asynchronicity, and concurrency. Volant is designed with simplicity in mind, allowing both low-level and high-level features with simple and easy to use syntax. Volant is transpiled to c with no or a very thin layer of abstraction over the code you write, which makes it as fast as c in almost all cases.
The team
The language was designed and developed solely by me.
Try it out
Step 1: Fork this repl.
Step 2: Edit the file named
main.vo
and press the run button to try it out.You can also try Volant on our online Volant playground here.
Useful links
EDIT: @CSharpIsGud made a complete operating system using Volant. Check it out here.
Any constructive feedback is appreciated and thanks for checking it out.
@AmazingMech2418 An interpreter usually isn't very fast and most people use an intermediary like C or C++. Not everyone knows assembly good enough to generate fast, portable code.
What I call a fake language is when people do this: