Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Links for PL & Self evaluating expressions #233

Merged
merged 2 commits into from
Sep 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Home/components/Writings/postsList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ type Post = {
};

export const postsList: Post[] = [
{
datetime: '2023-09-04',
link: '/series/essentials-of-interpretation/the-programming-language-and-self-evaluating-expressions',
title:
'Essentials of Interpretation: The Programming Language & Self-Evaluating Expressions',
},
{
datetime: '2023-08-28',
link: '/series/essentials-of-interpretation/a-compiler-crash-course',
Expand Down
5 changes: 5 additions & 0 deletions content/tags/programming-language-design/en/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
## 2023

<ul>
<PostAndDate
date="2023-09-04"
title="Essentials of Interpretation: The Programming Language & Self-Evaluating Expressions"
url="/series/essentials-of-interpretation/the-programming-language-and-self-evaluating-expressions"
/>
<PostAndDate
date="2023-08-28"
title="Essentials of Interpretation: A Compiler Crash Course"
Expand Down
6 changes: 6 additions & 0 deletions public/rss.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
<title>TK's Blog</title>
<link>https://iamtk.co</link>
</image>
<item>
<title>Essentials of Interpretation: The Programming Language & Self-Evaluating Expressions</title>
<link>https://www.iamtk.co/series/essentials-of-interpretation/the-programming-language-and-self-evaluating-expressions</link>
<guid isPermaLink="true">https://www.iamtk.co/series/essentials-of-interpretation/the-programming-language-and-self-evaluating-expressions</guid>
<description>The Eva programming language, its syntax and features, and the interpreter implementation: numbers, strings, and addition</description>
</item>
<item>
<title>Essentials of Interpretation: A Compiler Crash Course</title>
<link>https://www.iamtk.co/series/essentials-of-interpretation/a-compiler-crash-course</link>
Expand Down
Loading