Aliaksei Budavei | dfcef89 | 2024-02-18 21:02:14 +0300 | [diff] [blame] | 1 | vim9script |
2 | |||||
3 | # Vim :new command and class constructors. | ||||
4 | class Test | ||||
5 | def new() | ||||
6 | enddef | ||||
7 | def newOther() | ||||
8 | enddef | ||||
9 | def newyetanother() | ||||
10 | enddef | ||||
11 | endclass | ||||
12 | |||||
13 | Test.new() | ||||
14 | Test.newOther() | ||||
15 | Test.newyetanother() | ||||
16 | new | ||||
17 | quit |