diff options
| author | 2023-07-24 12:51:48 +0800 | |
|---|---|---|
| committer | 2023-07-24 12:51:48 +0800 | |
| commit | ccbe69c9e072c4bf8364e23a461d224e150a421f (patch) | |
| tree | 39fccaa5c453f2fa69c9771f4bea60835ece5ccd | |
| parent | 747de8e728f3d40a227246804dcfceadfa202317 (diff) | |
| download | TRPGNivis-ccbe69c9e072c4bf8364e23a461d224e150a421f.tar.gz TRPGNivis-ccbe69c9e072c4bf8364e23a461d224e150a421f.zip | |
😎beauty table
| -rw-r--r-- | src/main.pdf | bin | 52923 -> 54209 bytes | |||
| -rw-r--r-- | src/main.tex | 32 |
2 files changed, 27 insertions, 5 deletions
diff --git a/src/main.pdf b/src/main.pdf Binary files differindex 069af95..4ec4dd7 100644 --- a/src/main.pdf +++ b/src/main.pdf diff --git a/src/main.tex b/src/main.tex index 4013b74..442d3d9 100644 --- a/src/main.tex +++ b/src/main.tex @@ -1,11 +1,12 @@ \documentclass[conference]{IEEEtran} +\usepackage{booktabs} \begin{document} \title{Psi CLI Language} \author{\IEEEauthorblockN{HsiangNianian} -\IEEEauthorblockA{\textit{Department of Computer Science} \\ -\textit{University of RBQ U.}\\ -i@jyunko.cn}} + \IEEEauthorblockA{\textit{Department of Computer Science} \\ + \textit{University of RBQ U.}\\ + i@jyunko.cn}} \maketitle \begin{abstract} @@ -20,6 +21,27 @@ This section describes the key features of the Psi CLI language. \subsection{Lexer Module} The lexer module is responsible for converting source code into a sequence of tokens. +It recognizes the basic elements of the language such as identifiers, keywords, operators, and literals. + +\begin{table}[htbp] + \caption{Code Tokens and Corresponding Meanings} + \label{table:code_tokens} + \centering + \begin{tabular}{@{} c|c @{}} + \toprule + \textbf{Token} & \textbf{Meaning} \\ + \midrule + list & TYPE \\ + colors & IDENTIFIER \\ + = & EQUALS \\ + red & IDENTIFIER \\ + , & COMMA \\ + blue & IDENTIFIER \\ + , & COMMA \\ + green & IDENTIFIER \\ + \bottomrule + \end{tabular} +\end{table} \subsection{Parser Module} The parser module converts the token sequence into an abstract syntax tree (AST). @@ -58,8 +80,8 @@ This section provides information about the license of the Psi CLI language. The authors would like to thank... \section*{References} -[1] Reference 1 + [1] Reference 1 -[2] Reference 2 + [2] Reference 2 \end{document}
\ No newline at end of file |
