Swallow is a compiled programming language currently under development. Docs coming soon.
I am creating it as a fast alternative to Python and an easy one to C.
- Ease of use
- Fast
- Highly modular
- Occupies less memory
- Compiled
You can consider it to be a superset of C which compiles to clean C. So valid c code is also valid Swallow code (the language is named Swallow). It will have no garbage collector because it is a system programming language but it will be very easy to use so there will be less chance of memory leak.
For now it is written in V (visit vlang.io for more info) but in the future it will be self hosted.
Currently we are working on the codegen and some swallow programs are working :)
Here is a small example for you to understand:
def main():
print("hi")
The main
function is the entry point for the program.
Cool, you can contact me via mail.
Email: saptakbhoumik@gmail.com
Great, go ahead and make the changes you want. If you create any new file make sure to comment your name in the file as shown Original author: Your name
The swallow compiler is licensed under the Mozilla Public License