Renamed project since I do not intend to support over funge variants
This commit is contained in:
parent
da7e7dae2b
commit
4cb1cfbef5
8 changed files with 12 additions and 12 deletions
|
@ -5,9 +5,9 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"git.adyxax.org/adyxax/gofunge/pkg/field"
|
"git.adyxax.org/adyxax/gofunge98/pkg/field"
|
||||||
"git.adyxax.org/adyxax/gofunge/pkg/interpreter"
|
"git.adyxax.org/adyxax/gofunge98/pkg/interpreter"
|
||||||
"git.adyxax.org/adyxax/gofunge/pkg/pointer"
|
"git.adyxax.org/adyxax/gofunge98/pkg/pointer"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
||||||
module git.adyxax.org/adyxax/gofunge
|
module git.adyxax.org/adyxax/gofunge98
|
||||||
|
|
||||||
go 1.17
|
go 1.17
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
package interpreter
|
package interpreter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.adyxax.org/adyxax/gofunge/pkg/field"
|
"git.adyxax.org/adyxax/gofunge98/pkg/field"
|
||||||
"git.adyxax.org/adyxax/gofunge/pkg/pointer"
|
"git.adyxax.org/adyxax/gofunge98/pkg/pointer"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Interpreter struct {
|
type Interpreter struct {
|
||||||
|
|
|
@ -4,8 +4,8 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"git.adyxax.org/adyxax/gofunge/pkg/field"
|
"git.adyxax.org/adyxax/gofunge98/pkg/field"
|
||||||
"git.adyxax.org/adyxax/gofunge/pkg/pointer"
|
"git.adyxax.org/adyxax/gofunge98/pkg/pointer"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"time"
|
"time"
|
||||||
"unsafe"
|
"unsafe"
|
||||||
|
|
||||||
"git.adyxax.org/adyxax/gofunge/pkg/field"
|
"git.adyxax.org/adyxax/gofunge98/pkg/field"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (p *Pointer) Exec(f *field.Field) (done bool, returnValue *int) {
|
func (p *Pointer) Exec(f *field.Field) (done bool, returnValue *int) {
|
||||||
|
|
|
@ -3,7 +3,7 @@ package pointer
|
||||||
import (
|
import (
|
||||||
"math/rand"
|
"math/rand"
|
||||||
|
|
||||||
"git.adyxax.org/adyxax/gofunge/pkg/field"
|
"git.adyxax.org/adyxax/gofunge98/pkg/field"
|
||||||
)
|
)
|
||||||
|
|
||||||
type InputFunction func() int
|
type InputFunction func() int
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"git.adyxax.org/adyxax/gofunge/pkg/field"
|
"git.adyxax.org/adyxax/gofunge98/pkg/field"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ import (
|
||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"git.adyxax.org/adyxax/gofunge/pkg/field"
|
"git.adyxax.org/adyxax/gofunge98/pkg/field"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue