diff --git a/website/docs/meta-comments/index.md b/website/docs/meta-comments/index.md index b9c40ec..2b49189 100644 --- a/website/docs/meta-comments/index.md +++ b/website/docs/meta-comments/index.md @@ -27,6 +27,7 @@ print(f'Time taken: {t1 - t0:.6f} seconds') ```py live_py +# from time import time t0 = time() ### PRE @@ -38,8 +39,9 @@ a_5 = fib(27) ### POST t1 = time() print(f'Time taken: {t1 - t0:.6f} seconds') +# ``` :::tip[Hover over the code block] Hover over the code block to see the buttons to expand `preCode` and `postCode` parts of the code block. -::: \ No newline at end of file +:::