4 lines
77 B
Text
4 lines
77 B
Text
#lang lean4
|
|
|
|
def f (xs : List Nat) : List Nat :=
|
|
xs.map (fun x => x + 1) [1]
|