Skip to content

Commit

Permalink
comment out- jitpack includes tests?
Browse files Browse the repository at this point in the history
  • Loading branch information
YairLevi committed Jan 16, 2024
1 parent 193c0ed commit 65d663c
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions src/test/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ import org.levi.coffee.Window


fun main() {
val win = Window(isDev = true)
win.setSize(700, 700)
win.setTitle("My first Javatron app!")

win.setURL("http://localhost:5173")
win.bind(
Calculator(),
)

win.addBeforeStartCallback { println("Started app...") }
win.addOnCloseCallback { println("Closed the app!") }

win.run()
// val win = Window(isDev = true)
// win.setSize(700, 700)
// win.setTitle("My first Javatron app!")
//
// win.setURL("http://localhost:5173")
// win.bind(
// Calculator(),
// )
//
// win.addBeforeStartCallback { println("Started app...") }
// win.addOnCloseCallback { println("Closed the app!") }
//
// win.run()
}

0 comments on commit 65d663c

Please sign in to comment.