Noogλe

search input

Function of the day

  • Concatenate two lists

    Inputs

    x

    1. Function argument

    y

    2. Function argument

    Type

    concat :: [a] -> [a] -> [a]
    

    Examples

    lib.trivial.concat usage example

    concat [ 1 2 ] [ 3 4 ]
    => [ 1 2 3 4 ]