Maze generation: Difference between revisions

→‎{{header|Julia}}: update to julia version 0.5
(Kotlin entry)
(→‎{{header|Julia}}: update to julia version 0.5)
Line 3,273:
 
=={{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[])
push!(visited, cell)