Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== print ====== ===== Вывод в стандартный поток вывода ===== **print** выводит свой аргумент в стандартный поток вывода: <code kotlin> print("Hello ") print("world!") </code> Функция **println** выводит свои аргументы и добавляет перенос строки, так что следующий выводимый текст появляется на следующей строке: <code kotlin> print("Hello world!") print("Second line") </code> kotlin/print.txt Last modified: 2026/03/24 15:21