Skip to content

Support the underscore symbol separates digits in number values

Zhou Qiankang requested to merge wszqkzqk/vala:underscore_separates into main

The underscore symbol separates digits in number values for readability purposes.

double real = 1_500.200_2e-1_000;
int num = 1_000_000;
uint64 unum = 1234_5678;

This feature already exists in some popular programing language such as Python and C#.

Edited by Zhou Qiankang

Merge request reports