Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit 7254c36

Browse files
committed
Lower-case repository-name
1 parent e0a6077 commit 7254c36

File tree

15 files changed

+26
-26
lines changed

15 files changed

+26
-26
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This repository contains an interpreter for the "Monkey" programming
44
language, as described in [Write an Interpreter in Go](https://interpreterbook.com).
55

6-
The code was originally written by [gaufung](https://github.com/gaufung/Monkey), but has been updated by [skx](https://github.com/skx/Monkey):
6+
The code was originally written by [gaufung](https://github.com/gaufung/Monkey), but has been updated by [skx](https://github.com/skx/monkey):
77

88
* Added single & multi-line comments.
99
* Added postfix operators (`i++`, `i--`).
@@ -21,8 +21,8 @@ The code was originally written by [gaufung](https://github.com/gaufung/Monkey),
2121
If you have a working [golang](https://golang.org/) setup you can
2222
install the intepreter via:
2323

24-
$ go get -u github.com/skx/Monkey
25-
$ go install github.com/skx/Monkey
24+
$ go get -u github.com/skx/monkey
25+
$ go install github.com/skx/monkey
2626

2727

2828
# 1 Introduction

ast/ast.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"strings"
66

7-
"github.com/skx/Monkey/token"
7+
"github.com/skx/monkey/token"
88
)
99

1010
type Node interface {

ast/ast_test.go

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

6-
"github.com/skx/Monkey/token"
6+
"github.com/skx/monkey/token"
77
)
88

99
func TestString(t *testing.T) {

evaluator/evaluator.go

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

6-
"github.com/skx/Monkey/ast"
7-
"github.com/skx/Monkey/object"
6+
"github.com/skx/monkey/ast"
7+
"github.com/skx/monkey/object"
88
)
99

1010
// pre-defined object including Null, True and False

evaluator/evaluator_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"math"
55
"testing"
66

7-
"github.com/skx/Monkey/lexer"
8-
"github.com/skx/Monkey/object"
9-
"github.com/skx/Monkey/parser"
7+
"github.com/skx/monkey/lexer"
8+
"github.com/skx/monkey/object"
9+
"github.com/skx/monkey/parser"
1010
)
1111

1212
func TestEvalArithmeticExpression(t *testing.T) {

evaluator/stdlib_core.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strconv"
66

7-
"github.com/skx/Monkey/object"
7+
"github.com/skx/monkey/object"
88
)
99

1010
// convert a double/string to an int

evaluator/stdlib_file.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bufio"
55
"os"
66

7-
"github.com/skx/Monkey/object"
7+
"github.com/skx/monkey/object"
88
)
99

1010
//

evaluator/stdlib_math.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"math/rand"
66
"time"
77

8-
"github.com/skx/Monkey/object"
8+
"github.com/skx/monkey/object"
99
)
1010

1111
func mathAbs(args ...object.Object) object.Object {

evaluator/stdlib_string.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"unicode/utf8"
77

8-
"github.com/skx/Monkey/object"
8+
"github.com/skx/monkey/object"
99
)
1010

1111
// string = string.interpolate( string, hash );

lexer/lexer.go

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

6-
"github.com/skx/Monkey/token"
6+
"github.com/skx/monkey/token"
77
)
88

99
// Lexer used to be as lexer for monkey programming language.

0 commit comments

Comments
 (0)