pork/examples/index.pork

5 lines
85 B
Plaintext

export func main() {
let items = [["Hello"], ["Goodbye"]]
println(items[0][0])
}