-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.56 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.56 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>
<html>
<head>
<title>PHP-SEQ: FPL(Functional Programming Language)-like linear data structure in PHP</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
</head>
<body>
<div class="container">
<h1 class="display-4">PHP-SEQ</h1>
<h2><small class="text-muted">FPL(Functional Programming Language)-like linear data structure in PHP</small></h2>
<div>
<p class="lead">php-seq is a Functional-Programming-Language-like linear data
structure written in PHP. I am a fan of FPL (Functional Programming
Language) ever since I learned OPAL in the university. This is a fun
project to get some feel of an FPL in PHP. If you want to know about
the beauty of an FPL, check following sort examples.</p>
</div>
<div>
<h3>
<ul class="list-unstyled">
<li><a href="./example/insertsort.php" class="btn btn-outline-info btn-sm">Insertion sort example</a></li>
<li><a href="./example/selectionsort.php" class="btn btn-outline-info btn-sm">Selection sort example</a></li>
<li><a href="./example/quicksort.php" class="btn btn-outline-info btn-sm">Quick sort example</a></li>
<li><a href="./example/mergesort.php" class="btn btn-outline-info btn-sm">Merge sort example</a></li>
<li>This text is just for testing....</li>
</ul>
</h3>
</div>
</div>
</body>
</html>