I use TatSu as a python parser library (as intended) and used the "CalcMiniTutorial" to help to understand the buildup.
Sadly I don't find a solution to declare float numbers.
The tutorial uses number = /\d+/ ;
for normal numbers but that wont work for Floats.
I also tried number = /\d+"."\d+/ ;
and number = /\d+\\.\d+/ ;
but that wont work ether.
Does someone have an idea or solution?