Skip to content

Instantly share code, notes, and snippets.

@osdrv
Created March 15, 2012 06:00
Show Gist options
  • Save osdrv/2042308 to your computer and use it in GitHub Desktop.
Save osdrv/2042308 to your computer and use it in GitHub Desktop.
functions overloading
void a( Integer b ) => print( "hello integer $b" );
void a( String b ) => print( "hello string $b" ); // fatal error: `a` is already defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment