Skip to content

Instantly share code, notes, and snippets.

@jbclements
Created October 3, 2018 04:01
Show Gist options
  • Save jbclements/6f42e70548fd68be49b74f1a16235108 to your computer and use it in GitHub Desktop.
Save jbclements/6f42e70548fd68be49b74f1a16235108 to your computer and use it in GitHub Desktop.
The list template, in Typed Racket.
#lang typed/racket
;; purpose statement goes here...
(define (fun-for-lists [l : (Listof Any)]) ; refine the types...
(match l
['() ...]
[(cons fst rst) ... fst ... (fun-for-lists rst) ...]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment