blob: 985cfd3c11fa6e712b65bcc61db38e46e8d8dbfe [file] [log] [blame]
Aliaksei Budaveidfcef892024-02-18 21:02:14 +03001vim9script
2
3# Vim :new command and class constructors.
4class Test
5 def new()
6 enddef
7 def newOther()
8 enddef
9 def newyetanother()
10 enddef
11endclass
12
13Test.new()
14Test.newOther()
15Test.newyetanother()
16new
17quit