womangling/index.html
2025-02-13 23:03:41 +01:00

53 lines
1.7 KiB
HTML

<!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++ Symbol 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-1.html">Basics</a>
</li>
</ol>
</div>
</div>
<footer>
<button
onclick="localStorage.removeItem('lessons') ; alert('deleted data')"
>
reset
</button>
</footer>
</main>
</body>
</html>