This is a simple test of a live notebook.
import matplotlib.pyplot as plt import numpy as np
xs = np.linspace(0, 10, 300) plt.plot(xs, np.sin(xs))
x = 1 print("Hello!")
Hello!