This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns core-typed-bug.core | |
(:require [clojure.core.typed :refer :all])) | |
(ann-protocol ITypedTest | |
get-data [ITypedTest -> Any]) | |
(defprotocol> ITypedTest | |
(get-data [this])) | |
(ann typed-test [String -> ITypedTest]) | |
(defn typed-test [input] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns core-typed-bug.core | |
(:require [clojure.core.typed :refer :all])) | |
(defprotocol> ITypedTest | |
(get-data [this])) | |
(defn> testfn :- Any | |
[asdf :- Keyword, in :- ITypedTest] | |
(.get-data in)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sample project for the "Getting started with JavaFX in Clojure" ( https://coderwall.com/p/4yjy1a ) ProTip. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Files for the https://coderwall.com/p/-sawaa protip. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Highlights line you're currently on | |
(global-hl-line-mode t) | |
;; Shows in modeline where in the file you are | |
(sml-modeline-mode) | |
;; Pretty symbols | |
(require 'pretty-mode-plus) | |
(global-pretty-mode 1) | |
;; Autocomplete | |
(require 'auto-complete) | |
;; Disable annoying bell sound |
NewerOlder