Skip to content

Instantly share code, notes, and snippets.

@yyq123
Last active April 13, 2017 06:53
Show Gist options
  • Save yyq123/4c18997ffac9a857d6d0f0b452923df4 to your computer and use it in GitHub Desktop.
Save yyq123/4c18997ffac9a857d6d0f0b452923df4 to your computer and use it in GitHub Desktop.
FunctionSmaller.vim
function Min(num1,num2)
if a:num1 < a:num2
let smaller = a:num1
else
let smaller = a:num2
endif
return smaller
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment