Skip to content

Commit

Permalink
First commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
NicEastvillage committed Jun 24, 2019
0 parents commit 09f889e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea
*.iml
out
8 changes: 8 additions & 0 deletions src/example/Main.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package example

import dk.aau.cs.d409f19.cellumata.library.CellularAutomata2D

fun main() {
println("Hello world!")
CellularAutomata2D(100, 100)
}
3 changes: 3 additions & 0 deletions src/library/CellularAutomata2D.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package dk.aau.cs.d409f19.cellumata.library

class CellularAutomata2D(val width: Int, val height: Int)

0 comments on commit 09f889e

Please sign in to comment.