-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorial.html
More file actions
146 lines (127 loc) · 4.68 KB
/
tutorial.html
File metadata and controls
146 lines (127 loc) · 4.68 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ReactiveML - Tutorial</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="./bootstrap/css/bootstrap.css" rel="stylesheet">
<link href="./style.css" rel="stylesheet">
<link href="./bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
<link href="./rml.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="./index.html">ReactiveML</a>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Menu</span>
Menu
</button>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="./index.html">Home</a></li>
<li><a href="./tryrml/tryrml.html">Try online</a></li>
<li class="dropdown">
<a href="./documentation.html" class="dropdown-toggle" data-toggle="dropdown">
Documentation <span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li><a href="./documentation.html"> Manual</a></li>
<li class="active"><a href="./tutorial.html">Tutorial</a></li>
</ul>
</li>
<li class="dropdown">
<a href="./examples.html" class="dropdown-toggle" data-toggle="dropdown">
Examples <span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li><a href="./examples.html"> Basic Examples</a></li>
<li class="divider"></li>
<li><a href="./examples/simulator_elip/index.html">Network Simulation</a></li>
<li><a href="./glonemo/index.html">Glonemo</a></li>
<li><a href="./reactive_asco/index.html">Reactive Asco</a></li>
</ul>
</li>
<li><a href="./videos.html">Videos</a></li>
<li><a href="./publications.html">Publications</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</div> <!-- /navbar-collapse -->
</div> <!-- /container -->
</div>
<div class="row">
<div class="col-md-12">
<h1>Tutorial</h1>
<hr>
<p>
The tutorial is design to run the ReactiveML interactive mode
using <code>rmltop</code>. Lines starting with then <code>#</code> symbol
cannot be used in the compiled mode.
</p>
<h3>Lessons</h3>
<p>
<ul>
<li><a href="./tutorial/lesson1.html">Lesson 1: Quick tour</a>
<p>An introduction to the main constructs of ReactiveML.</p>
</li>
<li><a href="./tutorial/lesson2.html">Lesson 2: Moving ball</a>
<p>Illustration of the dynamic
creation of processes through a graphical example.</p>
</li>
<li><a href="./tutorial/lesson3.html">Lesson 3: Dynamic reconfiguration</a>
<p>Examples of the expressiveness of higher order.</p>
</li>
<li><a href="./tutorial/lesson4.html">Lesson 4: Alarm clock</a>
<p>How to program automata.</p>
</li>
</ul>
</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<hr>
<div class="footer">
<div class="row">
<div class="col-md-6">
<p>
<small>
<a href="./navigation.html">navigation</a>
</small>
</p>
</div> <!-- /col-md-6 -->
<div class="col-md-6">
<p style="text-align: right">
<small>
<a href="./distrib">ReactiveML version 1.09.07</a><br>
2021-07-26 <a href="./distrib/changes">changes</a>
<!-- <br> -->
<!-- Warning: incompatible changes with previous versions are marked with <tt>*</tt>: <a href="distrib/changes">changes</a> -->
</small>
</p>
</div> <!-- /col-md-6 -->
</div> <!-- /row -->
</div> <!-- /footer -->
</div> <!-- /col-md-12 -->
</div> <!-- /row -->
</div> <!-- /container -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-37633890-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<script type="text/javascript" src="./bootstrap/js/jquery.js"></script>
<script type="text/javascript" src="./bootstrap/js/bootstrap.min.js"></script>
</body>
</html>