From e084cb2b305bf5c5ffc17d37c14e94e6732e5a42 Mon Sep 17 00:00:00 2001 From: ynn Date: Sat, 16 Nov 2024 21:15:12 +0900 Subject: [PATCH] chore(book): add the contributor info to the simple calculator example --- book/src/examples/calculator.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/book/src/examples/calculator.md b/book/src/examples/calculator.md index 5df6f155..b7cc450c 100644 --- a/book/src/examples/calculator.md +++ b/book/src/examples/calculator.md @@ -1,5 +1,7 @@ # Simple calculator +This page (including the images) was contributed by [ynn](https://github.com/your-diary). + When you implement an interpreter for a [domain-specific language (DSL)](https://en.wikipedia.org/wiki/Domain-specific_language), or any programming language, the process typically involves the following steps: 1. **Lexing**: Splitting the input stream (i.e., source code string) into tokens via a lexer.