Serverless cheaper?

https://runbook.cloud/blog/posts/how-we-massively-reduced-our-aws-lambda-bill-with-go/

tldnr:

Functions in serverless architecture should, in general, be single-threaded and single task - but evidently there are cases where exploiting concurrency inside a single lambda function invocation can save money. So using a language that does not address concurrency at the language level could be a case of pessimizing prematurely.