Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 454 Bytes

README.md

File metadata and controls

16 lines (14 loc) · 454 Bytes

B's

  • several paradigms with functional, object-oriented thanks to python, smalltalk, clojure
  • different languages
  • show paradigms have different "units"
  • new people :)

C's

  • lost focus several times
  • not lowering expectations of the domain

One-liners to do CountdownKata

  • Python: range(10, -1, -1)
  • Smalltalk: (10 to: 0 by: -1) asArray
  • Ruby: (0..10).to_a.reverse
  • Haskell: [10,9..0]
  • Clojure: (apply vector (range 10 -1 -1))