Skip to content

Commit 1822516

Browse files
authored
v2.0.0 alpha (deepnoodle-ai#22)
1 parent b7bbb62 commit 1822516

File tree

155 files changed

+7239
-5334
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

155 files changed

+7239
-5334
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
cmd/cli/cli
2+
.vscode
13
monkey
24
monkey-*
35
tamarin

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"python.formatting.provider": "black"
3+
}

arg/args.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package arg
33
import (
44
"fmt"
55

6-
"github.com/cloudcmds/tamarin/object"
6+
"github.com/cloudcmds/tamarin/v2/object"
77
)
88

99
func Require(funcName string, count int, args []object.Object) *object.Error {

arg/args_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package arg_test
33
import (
44
"testing"
55

6-
"github.com/cloudcmds/tamarin/arg"
7-
"github.com/cloudcmds/tamarin/object"
6+
"github.com/cloudcmds/tamarin/v2/arg"
7+
"github.com/cloudcmds/tamarin/v2/object"
88
"github.com/stretchr/testify/require"
99
)
1010

0 commit comments

Comments
 (0)