Live notebook

This is a simple test of a live notebook.

0
import matplotlib.pyplot as plt
import numpy as np
1
xs = np.linspace(0, 10, 300)
plt.plot(xs, np.sin(xs))
2
x = 1
print("Hello!")
Hello!