I6 Switches

In Inform version 6.32, how do you set switches, like -s and -z8 :question:

inform -s -v8

(I’m pretty sure you meant “-v8”, for setting Z-code version 8. “-z” is a legal switch but “-z8” is not.)

Alternatively, you can embed the switch options in the I6 source code:

!% -s
!% -v8

These lines must appear at the beginning of the source file, before any other blank lines or comments.

(There’s also the Switches directive, but that’s more restricted, so the “!%” trick is preferable.)

your right. i did. I just wanted to know how to do it. thanks.