1 2 3 4 5 6 7 8 9
vim9script export func Getsome() return 'some' endfunc export def Add42(count: number): number return count + 42 enddef