ABAP 换行

不换行: write ‘hello world!’. write ‘春天马上就到了!’. 换行: write ‘hello world!’. write /‘

不换行:
write ‘hello world!’.
write ‘春天马上就到了!’.
write 'hello world!'.write '春天马上就到了!'.
换行:
write ‘hello world!’.
write /‘春天马上就到了!’.
write 'hello world!'.write /'春天马上就到了!'.
换行的第二种:
write: ‘hello world!’ ,/,‘春天马上就到了!’.

write: 'hello world!' ,/,'春天马上就到了!'.