Code Golf: The zen of writing bad code by Kevin Marquette

Поделиться
HTML-код
  • Опубликовано: 14 май 2024
  • PowerShell Summit videos are recorded by our friends at ConFreaks.
    Our recordings are made in a way that minimizes overhead for our speakers and interruptions to our live audience. These recordings are meant to preserve the presentations' information for posterity, and are not intended to be a substitute for attending the Summit in person. These recordings are not intended as professional video training products. We hope you find these videos useful.
  • НаукаНаука

Комментарии • 1

  • @shadaxgaming
    @shadaxgaming 2 месяца назад

    Learned some interesting tips, but not sure when I'd use some of them. For example, assigning an array of values to a comma delimited list of variables. $var1,$var2,$var3 = 1..10, this would set $var1 an $var2 to the first two in the set of 1 through 10, while the last variable in the list is set to the rest of the values in the array (3 through 10).