Skip to content

Instantly share code, notes, and snippets.

@mattn
Created July 28, 2010 18:04
Show Gist options
  • Save mattn/495588 to your computer and use it in GitHub Desktop.
Save mattn/495588 to your computer and use it in GitHub Desktop.
function! s:print(...)
echo a:000
endfunction
let g:.print = function('s:print')
call print(1)
call print([1,2,3])
call print({"tyru": "たいるー"})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment