My work for Hoon 101. Will remain private until the class is over.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

14 řádky
563B

  1. :: Hoon School - Week 2
  2. :: ~bannum-magtus || s@p7.co.nz
  3. ::
  4. |= a=* :: take in any noun
  5. ^- tape :: explicitly return a tape
  6. %+ weld :: weld some strings to reduce repitition
  7. "input is " ::
  8. ?^ a :: first branch, test whether a is a cell
  9. "a cell" ::
  10. =- (weld - " atom") :: attach a block to the head of the subject
  11. ?: =((mod a 2) 0) :: mod is safe because we know a isnt a cell
  12. "an even" ::
  13. "an odd" ::