6 lines
148 B
Scala
6 lines
148 B
Scala
|
|
import java.awt.MouseInfo
|
||
|
|
object MousePosition extends App {
|
||
|
|
val mouseLocation = MouseInfo.getPointerInfo.getLocation
|
||
|
|
println (mouseLocation)
|
||
|
|
}
|