1% The following lines should all raise an error because of wrong
2% number of arguments
3
4input();
5
6input(1,1);
7
8ws();
9
10ws(1,2);
11
12part();
13
14part() := 1;
15
16end;
17
18