In the TeXbook, Knuth gives an example:
Are you tired of typing
\cr? You can get plain TEX to insert an automatic\crat the end of each input line in the following way:\begingroup \let\par=\cr \obeylines % \halign{⟨preamble⟩ ⟨first line of alignment⟩ ... ⟨last line of alignment}\endgroup
How would one wrap this up into a macro? So that one could use:
\mytable{%
This & is & the & first & row
This & is & the & second & row
}