(unknown)
| Date | 2016-05-06 09:29 |
| From | "Joe ." |
| Subject | (unknown) |
Hi
Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here
I remember seeing this in an orchestra some place, but can't seem to find it. What is the symbol which makes Csound read the next line as belonging to the line before it? So, let's say the symbol is @, then aOut oscil 1, @440, 1 will be read as aOut oscil 1, 440, 1 Thanks /* Joe */ |
| Date | 2016-05-06 09:52 |
| From | Rory Walsh |
| Subject | (unknown) |
Use \ at the end of the line you wish to break. a1 oscil 100 \ On 6 May 2016 09:30, "Joe ." <not007ful@gmail.com> wrote:
Csound mailing list
Csound@listserv.heanet.ie
https://listserv.heanet.ie/cgi-bin/wa?A0=CSOUND
Send bugs reports to
https://github.com/csound/csound/issues
Discussions of bugs and features can be posted here
|
| Date | 2016-05-06 09:58 |
| From | Victor Lazzarini |
| Subject | (unknown) |
You can also break lines at commas
a1 oscil 1,
440,
1
========================
Dr Victor Lazzarini
Dean of Arts, Celtic Studies and Philosophy,
Maynooth University,
Maynooth, Co Kildare, Ireland
Tel: 00 353 7086936
Fax: 00 353 1 7086952
> On 6 May 2016, at 09:52, Rory Walsh |
| Date | 2016-05-06 10:18 |
| From | "Joe ." |
| Subject | (unknown) |
Thanks. /* Joe */ On Fri, May 6, 2016 at 4:58 PM, Victor Lazzarini <Victor.Lazzarini@nuim.ie> wrote: You can also break lines at commas |