You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Option 1: change CODED in the list of constants to a char type
Thinking about this further, I think that option 1 -- changing CODED to a char in Processing.R -- is the way we should go. The only way that CODED is used in the Processing API is to compare it to key, so this preserves the Processing style of writing
if (key == CODED) {
which is what we want. The char(CODED) value in Java should be equal to in renjin something like:
key is a
char
, and CODED is aint
, I don't know how to compare those two thingsThe text was updated successfully, but these errors were encountered: