Maze generation: Difference between revisions

Content added Content deleted
(Kotlin entry)
(→‎{{header|Julia}}: update to julia version 0.5)
Line 3,273: Line 3,273:


=={{header|Julia}}==
=={{header|Julia}}==
String API has changed in julia versions > 0.4. One must import the library LegacyStrings for the following code to work.

<lang julia>function walk(maze, cell, visited = Any[])
<lang julia>function walk(maze, cell, visited = Any[])
push!(visited, cell)
push!(visited, cell)