Go Language Resources Go, golang, go... NOTE: This page ceased updating in October, 2012

--- Log opened Thu Dec 24 00:00:36 2009
01:10 -!- exch [n=nuada@h144170.upc-h.chello.nl] has left #go-run []
01:56 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[0:1][1][0:1]
01:56 < rndbot> <no output>
01:56 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[0:2][0][0:2]
01:56 < rndbot> [1 2]
01:56 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[0:2]
01:56 < rndbot> [[1 2] [3 4]]
01:57 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[0:2][0]
01:57 < rndbot> [1 2]
01:57 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[0:2][0][1:]
01:57 < rndbot> [2]
01:57 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[1:][0][1:]
01:57 < rndbot> [4]
01:58 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[1:][1]
01:58 < rndbot> <no output>
02:03 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[1:][1:]
02:03 < rndbot> []
02:17 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[0][0:1]
02:17 < rndbot> [1]
02:17 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[0][1:]
02:17 < rndbot> [2]
02:18 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[1][0:1]
02:18 < rndbot> [3]
02:18 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[1][1:]
02:18 < rndbot> [4]
02:19 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[0:][1:]
02:19 < rndbot> [[3 4]]
02:19 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[0][1:]
02:19 < rndbot> [2]
02:19 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[1:][1:]
02:19 < rndbot> []
02:20 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[1][1:]
02:20 < rndbot> [4]
02:21 < goplexian> @eval [2][2]int{[2]int{1,2}, [2]int{3,4}}[1][1]
02:21 < rndbot> 4
02:27 < goplexian> @eval [][]int{[2]int{1,2}, [2]int{3,4}}[1][1]
02:27 < rndbot> <Error: cannot use (node ARRAYLIT) (type [2]int) as type
[]int in array index...>
02:28 < goplexian> @eval [][]int{[]int{1,2}, []int{3,4}}[1][1]
02:28 < rndbot> 4
02:29 < goplexian> [][]int{[]int{1,2}, []int{3,4}}[][]
02:30 < goplexian> @eval [][]int{[]int{1,2}, []int{3,4}}[][]
02:30 < rndbot> <Error: syntax error near 4>
02:30 < goplexian> @eval [][]int{[]int{1,2}, []int{3,4}}[:][:]
02:30 < rndbot> <Error: syntax error near 4>
02:30 < goplexian> @eval [][]int{[]int{1,2}, []int{3,4}}[0:][0:]
02:30 < rndbot> [[1 2] [3 4]]
02:54 < goplexian> @eval len("")
02:54 < rndbot> 0
03:37 -!- rndbot [n=bot@wikipedia/Gracenotes] has quit [Remote closed the
connection]
03:37 -!- rndbot [n=bot@wikipedia/Gracenotes] has joined #go-run
03:53 -!- ChanServ changed the topic of #go-run to: rndbot runs Go statements |
fibonacci: > i, j := 0, 1; for { fmt.Printf("%d ", i); i, j = j, i + j; } |
expressions: @eval 2+2 | source: http://code.google.com/p/go-bot/ | logs:
http://go-lang.cat-v.org/irc-logs/go-run/ | accepts PMs now (/query rndbot)
--- Log closed Fri Dec 25 00:00:36 2009