{
div;
runBrython(`print('\\n PRINT: ok') # '\\n - inside html cell
print('\\n __BRYTHON__.__MAGIC__ ',__BRYTHON__.__MAGIC__,'\\n------\\n')
from browser import document #, alert() - doesn't work - unimportant.
def echo(ev):
s = document["zone"].value
document["echo2"].text = f'Hello {s} !'
print(f'Hello {s} !')
document["test"].unbind("click") # unbind other click events so re-evaluating this cell will be OK
document["test"].bind("click", echo)`);
}