UNPKG

js-slang

Version:

Javascript-based implementations of Source, written in Typescript

5 lines (4 loc) 179 B
export type Pair = [any, any]; export type List = null | Pair; export declare function pair(car: any, cdr: any): Pair; export declare function vector$45$$62$list(v: any[]): List;