spo/ass3/zbirnik/code/comment.go
2025-12-18 13:49:58 +01:00

11 lines
145 B
Go

package comment
type Comment struct {
value string
}
func newComment(val string) Comment {
return Comment {
value: val
}
}