(ns clojure.examples.example
   (:gen-class))

;; This program displays Hello World
(defn Example []
   (def seq1 (distinct (seq [1 1 2 2])))
   (println seq1))
(Example)