# Tutorial 10 – A stack-based language!
This tutorial will discuss a simple Forth-like stack based language built using the typed tagless final encoding style discussed in class.
## References
All works related to this tutorial are based on the [original typed tagless finally works](https://github.com/JacquesCarette/finally-tagless) by Dr. Carette, Dr. Kiselyov, and Dr. Shan. Specifically, we will be looking at [stack-symantics.hs](https://github.com/JacquesCarette/finally-tagless/blob/master/tagless/stack-symantics.hs).