Skip to content

Commit ede8af2

Browse files
committed
Another try at using internal packages. #87
1 parent f8f8be9 commit ede8af2

33 files changed

+394
-223
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ fast: test ${PROG} l1-tests run-examples lint doc
1313
deps:
1414
go get .
1515

16-
${PROG}: *.go l1.l1
16+
${PROG}: *.go lisp/*.go lisp/l1.l1
1717
go build -o l1 .
1818

1919
test:
20-
go test .
20+
go test ./lisp
2121

2222
l1-tests: ${PROG}
2323
./l1 tests.l1

api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3488,7 +3488,7 @@ Args: `()`
34883488
```
34893489
> (version)
34903490
;;=>
3491-
(0 0 49 dirty)
3491+
(0 0 50 dirty)
34923492
34933493
```
34943494

bumpver

+5-5
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ echo "Updating $VERSION to $NEW_TAG"
3030

3131
function update_version_file() {
3232
NEWVER="$1"
33-
rm -f version.go
34-
echo "package main" > version.go
35-
echo >> version.go
36-
echo "var version string = \"$NEWVER\"" >> version.go
33+
rm -f lisp/version.go
34+
echo "package lisp" > lisp/version.go
35+
echo >> lisp/version.go
36+
echo "var Version string = \"$NEWVER\"" >> lisp/version.go
3737
}
3838

3939
update_version_file $NEW_TAG
@@ -56,6 +56,6 @@ else
5656
fi
5757

5858
update_version_file "$NEW_TAG-dirty"
59-
git add version.go
59+
git add lisp/version.go
6060
git commit -m "Taint $NEW_TAG"
6161
git push

l1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4115,7 +4115,7 @@ Args: `()`
41154115
```
41164116
> (version)
41174117
;;=>
4118-
(0 0 49 dirty)
4118+
(0 0 50 dirty)
41194119
41204120
```
41214121

atom.go lisp/atom.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package main
1+
package lisp
22

33
// Atom is the primitive symbolic type.
44
type Atom struct {

0 commit comments

Comments
 (0)