aboutsummaryrefslogtreecommitdiff
path: root/test2.lang
blob: 5da16baba439927e1606df3594e23d326763e5d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
(import java.lang.System)

(ann-class java.lang.String)

(ann-class java.io.PrintStream
           methods
           (: println (-> [java.lang.String] Void)))

(ann-class java.lang.System
           fields
           (: out java.io.PrintStream))

(defclass Tagged [[java.lang.String tag] [java.lang.Object value]])

(definterface Function
  (: apply (-> [java.lang.Object] java.lang.Object)))

(def const "IDENTITY")

(def sample (#Tag "value"))

## (ann id #type (All [x] (-> [x] x)))
(def (id x)
  x)

#( (def (id x)
     (let return "RETURN"
          return))
   )#

(def (main args)
  (if true
    (_. (_.. System out) (println (id "TRUE")))
    (_. (_.. System out) (println "FALSE"))))