[Prev][Next][Index]
String Concatenation
- From: Andrew Mauer <mauer@mcs.anl.gov>
- Date: Fri, 8 Jul 1994 09:28:00 -0500
- To: sage-bugs@cica.indiana.edu
- Subject: String Concatenation
I doubt this will be worth doing anything about, but at least I will
have reported it.
/A/
** Sage does not understand string concatenation. Under ANSI C, adjacent
string literals are supposed to be concatenated.
Input:
------------------------------------------------------------------------
int main (void)
{
printf ("Sage" " is good\n");
return 0;
}
------------------------------------------------------------------------
Output:
------------------------------------------------------------------------
int main(void ){
printf("Sage");
return 0;
}
------------------------------------------------------------------------