Update docus.

This commit is contained in:
ykiko
2024-09-29 19:52:28 +08:00
parent 4be02da4b6
commit c9b8aa162c
8 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
// This is an example file that shows the usage of semantic tokens.
// clang-format off
char character = 'a';
// ^ ^
// keyword character
int number = 1;
// ^ ^
// keyword number
const char* string = "Hello, World!";
// ^ ^
// keyword string
#pragma once
// ^ ^
// directive pragma
#include <cstdio>
// ^ ^
// directive header
#define MAX 100
// ^ ^
// directive macro