plum
git clone https://git.pyrossh.dev/plum
A statically typed, imperative programming language inspired by rust, python
4670182
— Peter John
2026-07-23T21:30:47+05:30
fix(libs/std): list.plum imports std/option instead of relying on unresolved cross-file references
- libs/std/list.plum +2 -0
libs/std/list.plum
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
module std
|
|
2
2
|
|
|
3
|
+
import std/option
|
|
4
|
+
|
|
3
5
|
# A node stores the data in a list and contains pointers to the previous and next sibling nodes
|
|
4
6
|
type Node(a) =
|
|
5
7
|
value: a
|