Skip to content
Merged
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
4 changes: 2 additions & 2 deletions exercises/practice/game-of-life/.meta/Example.vb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Public Class GameOfLife
End If
End Sub

Public Function Tick()
Public Sub Tick()
Dim newMatrix As New List(Of List(Of Integer))

For row As Integer = 0 To _rows - 1
Expand Down Expand Up @@ -46,7 +46,7 @@ Public Class GameOfLife
Next

_matrix = newMatrix
End Function
End Sub

Public Function Matrix() As List(Of List(Of Integer))
Return _matrix
Expand Down
4 changes: 2 additions & 2 deletions exercises/practice/game-of-life/GameOfLife.vb
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Public Class GameOfLife
Throw New NotImplementedException("You need to implement this function")
End Sub

Public Function Tick()
Public Sub Tick()
Throw New NotImplementedException("You need to implement this function")
End Function
End Sub

Public Function Matrix() As List(Of List(Of Integer))
Throw New NotImplementedException("You need to implement this function")
Expand Down
Loading