mirror of
https://github.com/Noratrieb/womangling.git
synced 2026-01-14 08:55:03 +01:00
init
This commit is contained in:
commit
e6201286ac
4 changed files with 351 additions and 0 deletions
52
index.html
Normal file
52
index.html
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="index.css" />
|
||||
<title>Womangling</title>
|
||||
</head>
|
||||
<body>
|
||||
<main class="main">
|
||||
<div class="content">
|
||||
<h1>Learn C++ Itanium Mangling</h1>
|
||||
<noscript>
|
||||
<p>
|
||||
Warning: You have JavaScript disabled While the content is still
|
||||
viewable, interactive exercises will not work. Consider enabling
|
||||
JavaScript for this website.
|
||||
</p>
|
||||
</noscript>
|
||||
<p>
|
||||
This website will teach you C++ Itanium Name Mangling. Itanium-style
|
||||
mangling is used on a lot of platforms, including Linux.
|
||||
</p>
|
||||
<p>
|
||||
Since C++ mangling (the entire ABI) is considered stable today, you
|
||||
will be able to use this knowledge forever!
|
||||
</p>
|
||||
<p>
|
||||
This website consists of many lessons, each teaching you something new
|
||||
about C++ Itanium Mangling. There will be many interactive quizzes at
|
||||
each step to test your knowledge.
|
||||
</p>
|
||||
<div class="center">
|
||||
<ol class="lessons-list">
|
||||
<li class="lesson-list-item">
|
||||
<a href="/lesson-0.html">C names</a>
|
||||
</li>
|
||||
<li class="lesson-list-item">
|
||||
<a href="/lesson.html?lesson=1">Arguments and Return Types</a>
|
||||
</li>
|
||||
<li class="lesson-list-item">
|
||||
<a href="/lesson.html?lesson=2">More Integers</a>
|
||||
</li>
|
||||
<li class="lesson-list-item">
|
||||
<a href="/lesson.html?lesson=3">Namespaces</a>
|
||||
</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue