Created
November 25, 2020 14:29
-
-
Save karabanovbs/c6c625bbcb57529848035611c3679830 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 2.5 Функции | |
// Создайте текстовую переменную a = ‘hello world’; Напишите функцию, без возвращаемого значения. Функция меняет порядок слов на обратный. Например было ‘hello world’, стало ‘world hello’. | |
void main() { | |
var a = 'hello world'; | |
void reverse() { | |
a = a.split(' ').reversed.join(' '); | |
}; | |
reverse(); | |
print(a); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment