Carp/examples/temp.carp

14 lines
295 B
Plaintext
Raw Normal View History

(Debug.sanitize-addresses)
(Project.config "print-ast" true)
(doc f "This function will return 123.")
(sig f (Fn [] Int))
(defn f [] 123)
(defmodule Foo
2018-03-26 17:55:54 +03:00
(doc f "This is an evil function.")
(defn f [] 666)
2018-03-26 17:55:54 +03:00
(defn g [] 10000))
2018-03-26 17:55:54 +03:00
(doc Foo.g "The 10000 dollar function, annotated from afar.")