I would like the lines of "procedure" and "end procedure", "function", and "end function" etc to not be numbered.
For example, the default behavior produces this:
1 procedure hasNext(v,V,s)
2 solution <-- findSolution()
3 end procedure
but I would like to have this:
procedure hasNext(v,V,s)
1 solution <-- findSolution()
end procedure
Is this possible?