Announcement

Collapse
No announcement yet.

GETWORDS - simple APL program to generate random but meaningful sentences

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • GETWORDS - simple APL program to generate random but meaningful sentences


    Code:
    ∇Z←GETWORDS;F;A;B;C
    F←'apple pie' 'cake' 'chicken' 'roast' 'lamb' 'pizza' 'pork chops' 'fish' 'ham' 'bread'
    A←'bake' 'cook' 'use the oven' 'pop it in the oven'
    B←'cooking' 'working with' 'handling' 'focusing on' 'producing' 'making' 'creating'
    C←'like to' 'recommend you' 'prefer to' 'find it best to' 'usually' 'most likely will'
    Z←'When ',(,↑B[?⍴B]),' ',(,↑F[?⍴F]),' I ',(,↑C[?⍴C]),' ',(,↑A[?⍴A]),' for ',(⍕10+10×?6),' minutes at ',(⍕300+5×?10),' degrees.'
    ∇
Working...
X