Ends the current instrument block.
Instruments can be defined in any order (but they will always be both initialized and performed in ascending instrument number order). Instrument blocks cannot be nested (i.e. one block cannot contain another).
Note: There may be any number of instrument blocks in an orchestra.
Here is an example of the endin opcode. It uses the files endin.orc and endin.sco.
Example 15-1. Example of the endin opcode.
/* endin.orc */
; Initialize the global variables.
sr = 44100
kr = 4410
ksmps = 10
nchnls = 1
; Instrument #1.
instr 1
iamp = 10000
icps = 440
iphs = 0
a1 oscils iamp, icps, iphs
out a1
endin
/* endin.orc */
/* endin.sco */
; Play Instrument #1 for 2 seconds.
i 1 0 2
e
/* endin.sco */