Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion about_allocation.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func aboutAllocation() {
a := new(int)
Expand Down
2 changes: 1 addition & 1 deletion about_anonymous_functions.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func aboutAnonymousFunctions() {
{
Expand Down
2 changes: 1 addition & 1 deletion about_arrays.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

import "fmt"

Expand Down
2 changes: 1 addition & 1 deletion about_basics.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func aboutBasics() {
assert(__bool__ == true) // what is truth?
Expand Down
2 changes: 1 addition & 1 deletion about_channels.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func aboutChannels() {
ch := make(chan string, 2)
Expand Down
2 changes: 1 addition & 1 deletion about_common_interfaces.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

import "bytes"

Expand Down
2 changes: 1 addition & 1 deletion about_concurrency.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func isPrimeNumber(possiblePrime int) bool {
for underPrime := 2; underPrime < possiblePrime; underPrime++ {
Expand Down
2 changes: 1 addition & 1 deletion about_control_flow.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

import "fmt"

Expand Down
2 changes: 1 addition & 1 deletion about_defer.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func aboutDefer() {
var acc int
Expand Down
2 changes: 1 addition & 1 deletion about_enumeration.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func aboutEnumeration() {
{
Expand Down
2 changes: 1 addition & 1 deletion about_files.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

import "io/ioutil"
import "strings"
Expand Down
2 changes: 1 addition & 1 deletion about_interfaces.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func aboutInterfaces() {
bob := new(human) // bob is a kind of *human
Expand Down
2 changes: 1 addition & 1 deletion about_maps.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func aboutMaps() {
ages := map[string]int{
Expand Down
2 changes: 1 addition & 1 deletion about_panics.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func divideFourBy(i int) int {
return 4 / i
Expand Down
2 changes: 1 addition & 1 deletion about_pointers.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func aboutPointers() {
{
Expand Down
2 changes: 1 addition & 1 deletion about_slices.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func aboutSlices() {
fruits := []string{"apple", "orange", "mango"}
Expand Down
2 changes: 1 addition & 1 deletion about_strings.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

import "fmt"

Expand Down
2 changes: 1 addition & 1 deletion about_structs.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

func aboutStructs() {
var bob struct {
Expand Down
2 changes: 1 addition & 1 deletion about_types.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

type coolNumber int

Expand Down
2 changes: 1 addition & 1 deletion about_variadic_functions.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

import "strings"

Expand Down
2 changes: 1 addition & 1 deletion setup_koans_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package go_koans
package gokoans

import (
"fmt"
Expand Down