-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (55 loc) · 2.47 KB
/
Copy pathindex.html
File metadata and controls
56 lines (55 loc) · 2.47 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/styles/stackoverflow-light.min.css"
/>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/highlight.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/11.7.0/languages/scala.min.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.css"
/>
<title>Scala 3 Native bindings generator</title>
</head>
<body>
<div class="title-container">
<div class="title-left">
<h1 class="page-title">
<a href="/">Scala 3 Native bindings generator</a>
</h1>
<a href="https://github.com/indoorvivants/sn-bindgen-web" target="_blank" rel="noopener" class="github-link" title="View on GitHub" aria-label="View on GitHub">
<img src="https://cdn.simpleicons.org/github/4444b8" width="22" height="22" alt="GitHub" />
</a>
</div>
<div>
<p class="intro">
This webapp uses
<a
href="https://sn-bindgen.indoorvivants.com"
target="_blank"
>sn-bindgen</a
>
to generate idiomatic Scala 3 Native bindings to C code. The
<a href="https://github.com/indoorvivants/sn-bindgen-web"
>app itself</a
>
is powered by
<a href="https://scala-native.org/en/stable/"
>Scala Native</a
>
on the backend and
<a href="https://scala-js.org">Scala.js</a> on the frontend
</p>
</div>
</div>
<div id="appContainer"></div>
<script src="/src/main.js" type="module"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/codemirror.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.45.0/mode/clike/clike.js"></script>
</body>
</html>