Can I make this function into a lambda one?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Drawsi
func _fac(r):
var aux=0
for i in r:
	aux=aux+i
return aux