7 lines
64 B
Go
7 lines
64 B
Go
|
package shared
|
||
|
|
||
|
type Node struct {
|
||
|
Value string
|
||
|
Next *Node
|
||
|
}
|