Function: len
The len() function return the length of either a string or list.
Syntax:
<string_or_list>.len()
Example:
var.test_list = [1, 2, 3]
var.size = var.test_list.len()
case true:
// Render as: "Size: 3"
return DEBUG, "Size: @var.size"