Explicitly depend on the win classifier version of javafx works
@vlaaad OK. Will experiment with both editable and placing an input in the cell approaches. Agree the latter seems cleaner.
@lilactown it's not documented, think I'll write a doc sometime since it looks like a recurring theme
I get a class not found exception on :require. Using clojure 1.10, openJDK 11.0.2
Can you show your exception/stacktrace?
nREPL server started on port 34805 on host 127.0.0.1 - <nrepl://127.0.0.1:34805> REPL-y 0.4.3, nREPL 0.6.0 Clojure 1.10.0 OpenJDK 64-Bit Server VM 11.0.2+9 Docs: (doc function-name-here) (find-doc "part-of-name-here") Source: (source function-name-here) Javadoc: (javadoc java-object-or-class-here) Exit: Control+D or (exit) or (quit) Results: Stored in vars *1, *2, *3, an exception in *e cljfx-test.core=> (:require [cljfx.api :as fx]) Syntax error (ClassNotFoundException) compiling at (form-init16776446269092105039.clj:1:1). cljfx.api
That's ns syntax, you want (require '[cljfx.api :as fx])
at the REPL
you have to quote it that works.
That is not in the minimal example on the github readme.
so just in the REPL got it
You mean this one?
(ns example
(:require [cljfx.api :as fx]))
yes
I am new so
Yeah, this syntax works only inside (ns ...)