style: scanner not lexer

This commit is contained in:
2026-01-19 19:40:55 -05:00
parent 091bc70172
commit 30e3bfe8f8
2 changed files with 0 additions and 10 deletions

View File

@@ -1,10 +0,0 @@
package lambda
import "fmt"
// Application -> (x x)
// Abstraction -> \x.y
// Variable -> x
func Parse(code string) (Expression, error) {
return nil, fmt.Errorf("not implemented")
}