does map work in application/x-scittle? #94
kangaroolab
started this conversation in
General
Replies: 4 comments 2 replies
|
@kangaroolab you need to realize this sequence. map is lazy. so wrapping this in a doall will likely make it work. |
0 replies
|
thanks...it works with doall/dorun...but any reason why it doesn't get executed in application/x-scittle, but execute as expected with core.eval_string? |
1 reply
|
if you copy/paste following at codepen.io, it doesn't print anything in console but if you use dorun (see below), it works |
1 reply
|
got it...thanks |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
if you tried following:
nothing happens in the console. I also observed similar in my code where map in application/x-scittle doesn't seem to get executed so I have to change to doseq.
any insight what is happening?
All reactions