filbert icon indicating copy to clipboard operation
filbert copied to clipboard

'else' without a colon generates valid JavaScript

Open differentmatt opened this issue 11 years ago • 0 comments

if False: print('false')
else print('true')
if (false) {
    __pythonRuntime.functions.print('false');
}
__pythonRuntime.functions.print('true');

differentmatt avatar Dec 04 '14 23:12 differentmatt