Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save karabanovbs/c6c625bbcb57529848035611c3679830 to your computer and use it in GitHub Desktop.
Save karabanovbs/c6c625bbcb57529848035611c3679830 to your computer and use it in GitHub Desktop.
// 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