Skip to content

Instantly share code, notes, and snippets.

@flaviut
Forked from Varriount/style.nim
Last active August 29, 2015 14:04
Show Gist options
  • Save flaviut/9d239aca007a036dbde8 to your computer and use it in GitHub Desktop.
Save flaviut/9d239aca007a036dbde8 to your computer and use it in GitHub Desktop.
# Option one
proc procedureWithlotsOfArgumentsAndAReallyLongName(
argOne: string, argTwo: int, argThree: float,
argFour: proc(), argFive: bool): returnType
# Option two
proc procedureWithlotsOfArgumentsAndAReallyLongName(
argOne: string, argTwo: int, argThree: float,
argFour: proc(), argFive: bool): returnType
# Option three
proc procedureWithlotsOfArgumentsAndAReallyLongName(
argOne: string,
argTwo: int,
argThree: float,
argFour: proc(),
argFive: bool): returnType
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment