Struct is a collection of fields. Syntax Initializing Structs Struct can be initialized using new keyword which will initialize fields […]
Read MoreApril 13, 2019
April 7, 2019
Emacs: Install emacs and slime
Let’s install slime using quicklisp. The complete guide on installing quicklisp can be found here. After you are done with the […]
Read MoreApril 4, 2019
Composite types: Slice
Slices A Slice is like a dynamically-sized array. A slice type is written []T,where elements has type T. So it’s […]
Read More
Comments Off on Composite types: Slice