studying at fcup, portugal
let lst = [ "Welcome"; "to"; "my"; "GitHub"; "profile"; "!" ]
let () =
  List.fold_left
    (fun acc a ->
      match a with "!" | "Welcome" -> acc ^ a | _ -> " " ^ acc ^ a)
    "" lst
  |> print_endline
let interests = [|
  "Functional Programming";
  "Compilers and Interpreters";
  "Type Theory";
  "Cybersecurity";
|]
let working_at = ("ahrefs", "improving internal tools")also check out my website


