website/content/research/proglang.md

14 lines
703 B
Markdown
Raw Permalink Normal View History

2020-01-15 21:51:49 -05:00
---
Title: Programming Languages
Description: Designing and Implementing Programming Languages
showthedate: false
---
Back in the Fall of 2018, under the guidance of Ian Finlayson, I worked towards creating a programming language similar to SLOTH (Simple Language of Tiny Heft). The language as of now is interpreted and supports array based programming.
[Github repository](https://github.com/brandon-rozek/sloth) outlining my work.
2023-09-26 17:43:41 -04:00
[Short Notes](types/) on Types of Programming Languages
Before this study, I worked though a book called ["Build your own Lisp"](https://www.buildyourownlisp.com/) and my implementation of a lisp like language: [Lispy Code](https://github.com/brandon-rozek/lispy)