Hey #schemers !
I have two numbers in strings with comma as decimal separator (e.g. "0,46" and "0,098")
Any idea how I can get their sum in simpler way than this :
(use-modules (ice-9 string-fun))
(+ (string->number (string-replace-substring "0,24" "," ".")) (string->number (string-replace-substring "0,098" "," ".")))
Feels heavy…
Thx!