1 {-# OPTIONS_GHC -fglasgow-exts #-}
1 {-# LANGUAGE ScopedTypeVariables #-}
2
3 module Example where {
4
5 data Queue a = AQueue [a] [a];
6