| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/a/w/e/awebpaca/Dolibarr/htdocs/includes/ace/src/snippets/ |
Upload File : |
define("ace/snippets/csound_orchestra",["require","exports","module"], function(require, exports, module) {
"use strict";
exports.snippetText = "# else\n\
snippet else\n\
else\n\
${1:/* statements */}\n\
# elseif\n\
snippet elseif\n\
elseif ${1:/* condition */} then\n\
${2:/* statements */}\n\
# if\n\
snippet if\n\
if ${1:/* condition */} then\n\
${2:/* statements */}\n\
endif\n\
# instrument block\n\
snippet instr\n\
instr ${1:name}\n\
${2:/* statements */}\n\
endin\n\
# i-time while loop\n\
snippet iwhile\n\
i${1:Index} = ${2:0}\n\
while i${1:Index} < ${3:/* count */} do\n\
${4:/* statements */}\n\
i${1:Index} += 1\n\
od\n\
# k-rate while loop\n\
snippet kwhile\n\
k${1:Index} = ${2:0}\n\
while k${1:Index} < ${3:/* count */} do\n\
${4:/* statements */}\n\
k${1:Index} += 1\n\
od\n\
# opcode\n\
snippet opcode\n\
opcode ${1:name}, ${2:/* output types */ 0}, ${3:/* input types */ 0}\n\
${4:/* statements */}\n\
endop\n\
# until loop\n\
snippet until\n\
until ${1:/* condition */} do\n\
${2:/* statements */}\n\
od\n\
# while loop\n\
snippet while\n\
while ${1:/* condition */} do\n\
${2:/* statements */}\n\
od\n\
";
exports.scope = "csound_orchestra";
}); (function() {
window.require(["ace/snippets/csound_orchestra"], function(m) {
if (typeof module == "object" && typeof exports == "object" && module) {
module.exports = m;
}
});
})();