Guest User

Untitled

a guest
Jul 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function! s:foo() abort
  2. delfunction s:foo
  3. return "foo passed"
  4. endfunction
  5.  
  6. function! s:bar()
  7. delfunction s:bar
  8. return "bar passed"
  9. endfunction
  10.  
  11. echo s:foo()
  12. echo s:bar()
Add Comment
Please, Sign In to add comment