У нас вы можете посмотреть бесплатно Kotlin Gleam Pipeline Programming Advent Of Code Day 1 Part 1 или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
This video is focused on Kotlin and Gleam solutions for Advent Of Code Day 1 Part 1 problem. I show that both languages support pipeline programming but using different mechanisms. I show the Programming style, code characteristics, philosophy: Pipeline programming Data-oriented programming Functional-like programming Declarative-like programming Side-effect isolation (I/O only in main) Expression-oriented programming Structured, composable functions No mutable global state Prefer not to have even local mutable state unless absolutely needed to gain smth much more valuable Pure functions Minimal branching, maximal transformation Clean, predictable control flow Lean functional patterns Less code means better. Code is dense The code is not opimized to gain maximum raw speed The code is kept vertical, so it stays within a regular monitor size, no need for endless zooming, scroling nonsense The code is opimized for correctness, simplicity and clarity The code is like do 1, do 2, do 3, get result, without stupid or smart nonsense