summaryrefslogtreecommitdiff
path: root/mnv/runtime/syntax/testdir/input/mnv_new.mnv
blob: 979446a0c45c852c57934f7efdfcb4f7e3fbc72a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
mnv9script
# MNV :new command and class constructors
# TODO: move to mnv9_constructor and create new mnv_ex_new and mnv9_ex_new
#       tests


class Test
  def new()
  enddef
  def newOther()
  enddef
  def newyetanother()
  enddef
endclass

Test.new()
Test.newOther()
Test.newyetanother()
new
quit