will.qian
will.qian
please patch the code ``` public boolean executeKeyEvent(KeyEvent event) { boolean handled = false; if (event.getAction() == KeyEvent.ACTION_DOWN) { switch (event.getKeyCode()) { --case KeyEvent.KEYCODE_DPAD_LEFT: ++case KeyEvent.KEYCODE_DPAD_UP: --handled = arrowScroll(FOCUS_LEFT); ++handled...
update: pull request https://github.com/rswier/c4/pull/47 missing comma when calling test(1 2), and compile ok ``` int test(int a, int b) { return a + b; } int main() { int result;...