mirror of
https://github.com/encounter/newlib.git
synced 2026-03-30 11:31:09 -07:00
14 lines
144 B
C
14 lines
144 B
C
main()
|
|
{
|
|
outbyte ('&');
|
|
outbyte ('@');
|
|
outbyte ('$');
|
|
outbyte ('%');
|
|
|
|
/* whew, we made it */
|
|
|
|
print ("\r\nDone...");
|
|
|
|
return;
|
|
}
|