DEV Community

Cover image for Please forget the colon of python
Kavindu Santhusa
Kavindu Santhusa

Posted on • Edited on

Please forget the colon of python

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
Enter fullscreen mode Exit fullscreen mode

Without colon

if 'Unv is awesome!'
    print('Hello World!')
# keep editing for live results
Enter fullscreen mode Exit fullscreen mode

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.

GitHub logo UnvLabs / Unv

Syntax for Unv Programming Language

↖️ Table of contents

📖 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!')
Enter fullscreen mode Exit fullscreen mode

🌈 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,

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)