style: remove decorative comment separators

This commit is contained in:
M.V. Hutz
2026-01-10 16:07:39 -05:00
parent 242fda3b4a
commit b2b2655c1e
5 changed files with 3 additions and 30 deletions

View File

@@ -4,8 +4,6 @@ type Expression interface {
IsExpression()
}
/** ------------------------------------------------------------------------- */
type Abstraction struct {
Parameters []string
Body Expression
@@ -30,8 +28,6 @@ func (Application) IsExpression() {}
func (Atom) IsExpression() {}
func (Clause) IsExpression() {}
/** ------------------------------------------------------------------------- */
func NewAbstraction(parameter []string, body Expression) *Abstraction {
return &Abstraction{Parameters: parameter, Body: body}
}