Skip to content

Instantly share code, notes, and snippets.

@devboy
Created November 22, 2011 00:58
Show Gist options
  • Save devboy/1384544 to your computer and use it in GitHub Desktop.
Save devboy/1384544 to your computer and use it in GitHub Desktop.
var getStringXTimes = function(x: Int, string: String) {
var result = "";
for ( i in 0...x )
result += string;
return result;
}
type(getStringXTimes); // Int -> String -> String
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment