radon-project / radon

The Radon Programming Language
https://radon-project.github.io
GNU General Public License v3.0
23 stars 2 forks source link

`...` or `Ellipsis` support. #89

Closed Almas-Ali closed 2 months ago

Almas-Ali commented 2 months ago

... this will be use as place holder, won't do anything. Can be use anywhere.

Where every we use it will be like:

some = ... 
print(some) # Ellipsis

fun single() -> ... 

switch some {
    case this ->... # pass checking
}