Skip to content

Instantly share code, notes, and snippets.

@hmaurer
Created September 7, 2012 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hmaurer/3668356 to your computer and use it in GitHub Desktop.
Save hmaurer/3668356 to your computer and use it in GitHub Desktop.
module = angular.module('app.controllers', [])
module.controller('HelloCtrl', ['$scope', ($scope) ->
$scope.name = "John Smith"
$scope.average = [1,65,2,77,34].average()
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment