CoffeeScript's not playing in browser @ stable P2.0
in
Processing with Other Languages
•
4 months ago
Has any1 been successful at running CS compiled code in newest Processing 2?
Tried both @ Chromium under Processing's local server and Firefox's directly running offline from disk.
P.S.: JS mode works alright!
A test sample:
- # https://github.com/processing-js/processing-js/blob/master/processing.js#L2241
- # https://github.com/fjenett/coffeescript-mode-processing/issues/16
- setup: -> size 600, 400, JAVA2D; fill 0xffFF0000
- draw: ->
- background -1
- text "#{frameCount} - ", 100, 100