Skip to content

Instantly share code, notes, and snippets.

@devnoo
Created November 27, 2011 10:27
Show Gist options
  • Save devnoo/1397363 to your computer and use it in GitHub Desktop.
Save devnoo/1397363 to your computer and use it in GitHub Desktop.
Seven languages in seven weeks : Solutions IO Day2 average on list
List myAverage := method(
total := 0
self foreach(i, element, (
if (element type == "Number", total = total + element, Exception raise("element is not a number"))
))
total / self size
)
array := list(3,4,5)
array myAverage println
array := list(list(3),4,5)
array myAverage println
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment