28 lines
940 B
Vue
28 lines
940 B
Vue
<script setup lang="ts">
|
|
|
|
import Paragraph from "../tags/Paragraph.vue";
|
|
import PageStart from "../tags/PageStart.vue";
|
|
</script>
|
|
|
|
<template>
|
|
<page-start>C</page-start>
|
|
|
|
<paragraph>C is one of those ancient languages that's still getting used to this very day. It's a language from
|
|
the year 1972, making it 53 years young as of 2025. It originated at Bell Labs, and was developed with the purpose of
|
|
creating utilities for Unix.<br><br>
|
|
|
|
In the 80s, C steadily became more and more accepted as the go-to language. Especially with kernel and driver code.
|
|
The Linux kernel is one such huge project written in almost purely C, although in recent times, the kernel is introducing
|
|
Rust code.
|
|
</paragraph>
|
|
|
|
<p>Table of contents:</p>
|
|
<ul>
|
|
<li><RouterLink to="/C/SetUp">> Set Up</RouterLink></li>
|
|
<li><RouterLink to="/C/SetUp">> Hello World</RouterLink></li>
|
|
</ul>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style> |