Colon is an important character in Python. You should end some statements with colon.
Any modern IDE code editor adds that colon automatically. I had used old IDE Geany. That feature is not available in that IDE.
Python is a beginner friendly programming language thanks to the syntax sugar of python. But this colon can confuce very beginners.
Some people says that colon improves the readability. But I don't know. It looks same for me without the colon.
With colon
if 'Unv is awesome!':
print('Hello World!')
# keep editing for live results
Without colon
if 'Unv is awesome!'
print('Hello World!')
# keep editing for live results
So I thought to create my own programming language. It is named Unv. You can play with the playground or read the docs to understand it.
Please give me a 🌟 on github you love this project.
📖 Unv specification
This is the language specification for the Unv programming language.
Here's a taste of UNV :
import print from 'standard'
if 'Unv is awesome!'
print('Hello World!')
🌈 Contribution guidelines
Unv is a volunteer effort. We encourage you to pitch in and join the team! See our guidelines to start contributing.
Please reach us on the,
- Feature request) - request cool missing syntax
- Bug report) - report cons and bugs of Unv syntax
- GIthub discussions
- chat on Gitter
- join slack chat
Currently UNV is under development
Also I need your help to build this language. Please convert your thoughts to comments.
Follow me for more article about this language.
Thanks for reading 💞
Top comments (1)