What does the $ mean

“Total crimes: $ {crimeListViewModel.crimes.size}”

I figured it out
In kotlin it’s part of a string template that formats a variable to a string
" $$varname or $${expression} "
I have two $$ showing when it should be only one
Apparently this sign is a format character in these post

Oh I see. I have been searching for the same.