Annotation of 43BSD/usr.lib/learn/C/L5.3e, revision 1.1

1.1     ! root        1: #print
        !             2: Let's try something easier.
        !             3: Write a program which copies its input to
        !             4: its output.  Compile and test it.   Then type ready.
        !             5: #once #create Ref
        !             6: hoboken harrison newark roseville avenue grove street
        !             7: east orange brick church orange highland avenue
        !             8: mountain station south orange maplewood millburn short hills
        !             9: summit chatham madison convent station morristown
        !            10: new providence murray hill berkeley heights
        !            11: gillette stirling millington lyons basking ridge
        !            12: bernardsville far hills peapack gladstone
        !            13: #user
        !            14: a.out <Ref >xxx
        !            15: #cmp Ref xxx
        !            16: #succeed
        !            17: /*     One way: */
        !            18: 
        !            19:  #include <stdio.h>
        !            20: 
        !            21: main() {
        !            22:        int c;
        !            23: 
        !            24:        while ((c = getchar()) != EOF)
        !            25:                putchar(c);
        !            26: }
        !            27: #log
        !            28: #next
        !            29: 5.1e 10

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.