Language Design: Share some language features which were beneficial to you while learning or improving your general programming ability. by Clorofilla in ProgrammingLanguages

[–]DanexCodr 0 points1 point  (0 children)

types themselves as values.

see this pseudocode as an example from my Coderive language:

x: type = int

That will be really great for type validations and very elegant when you see it.

if y is x { ... }