JupyterLite
¶2 + 2
console.log('hello world')
console.error('error')
const delay = 2000;
setTimeout(() => {
console.log('done');
}, delay);
var str = "hello world"
str.split('').forEach(c => {
console.log(c)
})
Lorenz system of differential equations
$$ \begin{aligned} \dot{x} & = \sigma(y-x) \\ \dot{y} & = \rho x - y - xz \\ \dot{z} & = -\beta z + xy \end{aligned} $$