Курс языка программирования Raku / Основы / Функция MAIN
/ Чтение аргументов командной строки
Тест: Значения по умолчанию
Consider the following program.
sub MAIN($a = 'abc', $b = 'def') {
say $a;
say $b;
}
1
What does it print if it is run as shown below?
$ raku t.raku
abc def | Enter the output values: ␣␣␣ and ␣␣␣ |
2
Now, the same program is run as:
$ raku t.raku xyz
xyz def | Enter the output values: ␣␣␣ and ␣␣␣ |
3
Finally, this command:
$ raku t.raku xyz 123
xyz 123 | Enter the output values: ␣␣␣ and ␣␣␣ |
Навигация по курсу
←
Функция MAIN
|
Функция MAIN
/ Несколько функций MAIN
→
💪 Or jump directly to the exercises to this section.
Эта страница автоматически переведена с помощью ChatGPT 4o. Оригинальный текст на английском языке.
Переводы этой страницы: English • Deutsch • Español • Italiano • Latviešu • Nederlands • Български • Русский • Українська