Advertisement
Guest User

Untitled

a guest
Oct 6th, 2015
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import Signal exposing (..)
  2. import Time exposing (fps)
  3. import Graphics.Element exposing (show)
  4. import Keyboard
  5. import Mouse
  6.  
  7. main =
  8. Signal.map3
  9. (\x y z -> show (x,y,z))
  10. (fps 10)
  11. Keyboard.arrows
  12. Mouse.position
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement