forked from hcientist/OnlinePythonTutor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathembedding-demo.html
More file actions
32 lines (25 loc) · 1.04 KB
/
embedding-demo.html
File metadata and controls
32 lines (25 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!--
Python Tutor: https://github.com/pgbovine/OnlinePythonTutor/
Copyright (C) Philip Guo ([email protected])
LICENSE: https://github.com/pgbovine/OnlinePythonTutor/blob/master/LICENSE.txt
-->
<head>
<title>Online Python Tutor embedding demo</title>
<!-- let Webpack take care of everything -->
<script type="text/javascript" src="build/embedding-demo.bundle.js?129cff1c38" charset="utf-8"></script>
</head>
<body style="background-color: white;">
<!-- This demo shows three visualizations, each embedded within a div ... -->
<p>Recursive list sum (from <a href="http://pythontutor.com">pythontutor.com</a> home page):</p>
<div id="listSumLabel"></div>
<div id="listSumDiv"></div>
<p>Towers of Hanoi:</p>
<div id="hanoiLabel"></div>
<div id="hanoiDiv"></div>
<p>Happy Birthday:</p>
<div id="happyLabel"></div>
<div id="happyDiv"></div>
</body>
</html>