DylanSp / wheel-lang

A small toy imperative language (with some OOP features) for demonstrating and practicing language design/implementation.
MIT License
14 stars 0 forks source link

Introduce standard library #35

Closed DylanSp closed 3 years ago

DylanSp commented 4 years ago

At a minimum, include linked list type.

DylanSp commented 4 years ago

May require introducing a module system of some sort.

DylanSp commented 3 years ago

Will need a way of testing this; perhaps as part of #67?

DylanSp commented 3 years ago

Started with #77; infrastructure for stdlib is there, along with some basic functions.

DylanSp commented 3 years ago

Linked list introduced in #81, with some fine-tuning in #82.