My work for Hoon 101. Will remain private until the class is over.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

14 lignes
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" ::