claj
claj

Reputation: 5412

Document.write in Clojurescript?

It's very often convenient to be able to print things in a simple way when debugging.

How do I call document.write in Clojurescript?

Upvotes: 6

Views: 1061

Answers (1)

Chris Granger
Chris Granger

Reputation: 201

Like so:

(.write js/document "hey")

Upvotes: 12

Related Questions