Welcome to DrScheme, version 204. Language: (module ...). > (define v (vector 1 2 3)) > (define v2 (vector 4 5)) > (define v3 (vector 6)) > (bind ([v c1 c2 c3] [v2 c4 c5] [v3 c6]) 'thisisatest) thisisatest > (bind ([v c1 c2 c3] [v2 c4 c5] [v3 c6]) (list v.c1 v.c2 v.c3 v2.c4 v2.c5 v3.c6)) (1 2 3 4 5 6) >