code 31034;
    procedure DUPCOLVEC(L, U, J, A, B); value L,U,J;
    integer L,U,J; array A,B;
    for L:= L step 1 until U do A[L,J]:= B[L];
        eop