我有以下简单的代码:
; No, test.core isn't the real namespace
(ns test.core
(:gen-class)
(:require [clojure.core.typed :refer [ann]]))
(defn -main
([]
(println "Hello, World!"))
([x]
(println "You gave me " x)))
我将如何-main
使用 注释函数core.typed
?