forked from hcientist/OnlinePythonTutor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composingprograms.html
72 lines (47 loc) · 1.77 KB
/
composingprograms.html
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!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 - Composing Programs - Python 3</title>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8"/>
<script type="text/javascript" src="build/composingprograms.bundle.js?91c6e08912" charset="utf-8"></script>
<!-- insert google-analytics.txt contents here -->
</head>
<body>
<table id="experimentalHeader">
<tr>
<td valign="top" id="headerTdLeft"></td>
<td valign="top" id="headerTdRight">
<div id="surveyHeader"></div>
</td>
</tr>
</table>
<div id="pyInputPane">
<div id="codeInputWarnings">Write code in
<select id="pythonVersionSelector">
<option value="3">Python 3.6</option>
</select>
and
<select id="cumulativeModeSelector">
<option value="true">display frames of exited functions.</option>
<option value="false">don't display exited functions.</option>
</select>
</div>
<div id="someoneIsTypingDiv" style="color: #e93f34; font-weight: bold; display: none;">Someone is typing ...</div>
<div id="codeInputPane"></div> <!-- populate with Ace code editor instance -->
<div id="frontendErrorOutput"></div>
<div id="surveyPane"></div>
<p>
<button id="executeBtn" class="bigBtn" type="button">Visualize Execution</button>
<button style="margin-left: 20px;" id="liveModeBtn" class="bigBtn" type="button">Live Programming Mode</button>
</p>
<div id="instructionsPane"></div>
</div>
<div id="pyOutputPane"></div>
<div id="footer"></div>
</body>
</html>