我在学习Pascal的过程中,出现一个问题,就是怎样使输出的东西紧接着前面输出的东西?例如:我想输出:  
                Bill Gates
      但是用
             writeln('Bill'); writeln('Gates'); 就输出
                                Bill
                                Gates
      有什么的方法可以达到我想的结果?(不用writeln('Bill',' ','Gates');