Input loop: Difference between revisions

Added GNU APL example
(Added GNU APL example)
Line 332:
ENDIF
ENDPROC</lang>
 
=={{header|APL}}==
{{works with|GNU APL}}
<lang APL>
h ← ⊃ (⎕fio['read_text'] 'corpus/sample1.txt')
⍴h
7 49
]boxing 8
h
┌→────────────────────────────────────────────────┐
↓This is some sample text. │
│The text itself has multiple lines, and │
│the text has some words that occur multiple times│
│in the text. │
│ │
│This is the end of the text. │
│ │
└─────────────────────────────────────────────────┘
</lang>
 
=={{header|ARM Assembly}}==
67

edits