Go to the first, previous, next, last section, table of contents.


stringInt

Function: stringInt { string -> int }
file: job.t
package: muf
status: alpha

The stringInt function converts a string into an integer, much like the C atoi() function (which is currently used in the implementation):

Stack:
"123"
Stack: "123"
stringInt
Stack: 123


Go to the first, previous, next, last section, table of contents.