Fixing package names after reorg
This commit is contained in:
parent
a2a232f8b6
commit
0bd976d456
|
@ -1,9 +1,8 @@
|
||||||
package main
|
package gofuck
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
|
||||||
"os"
|
"os"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,15 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import "brainfuck"
|
import (
|
||||||
|
"bitbucket.org/phlyingpenguin/go-fuck"
|
||||||
|
"bufio"
|
||||||
|
"os"
|
||||||
|
"io/ioutil"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
m := New()
|
m := gofuck.New()
|
||||||
instructions := make([]byte, 0)
|
instructions := make([]byte, 0)
|
||||||
|
|
||||||
// read in the instructions
|
// read in the instructions
|
||||||
|
|
Loading…
Reference in New Issue