Skip to content

Commit

Permalink
Telemetry dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
gianick committed Aug 23, 2023
1 parent 0fbe3f7 commit 2af1ff0
Show file tree
Hide file tree
Showing 4 changed files with 1,338 additions and 5 deletions.
3 changes: 3 additions & 0 deletions exercises/exercise_000_sudoku_solver_initial_state/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ lazy val `moving-from-scala-2-to-scala-3` =
libraryDependencies ++= Dependencies.dependencies,
testFrameworks += new TestFramework("munit.Framework"))

run / fork := true
run / connectInput := true

sbt.addCommandAlias("runSolver", "runMain org.lunatechlabs.dotty.SudokuSolverMain")
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ object SudokuSolverMain {
val system = ActorSystem[NotUsed](Main(), "sudoku-solver-system")

println(s"${GREEN}Hit RETURN to stop solver${RESET}")
StdIn.readLine()
system.terminate()
// StdIn.readLine()
// system.terminate()
}
}
Loading

0 comments on commit 2af1ff0

Please sign in to comment.