Guest User

Untitled

a guest
Jan 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. object Indentation {
  2. def method: Seq[(Int, Int)] = {
  3. val x = {
  4. val y = 3
  5. y * y
  6. }
  7.  
  8. for {
  9. i <- 1 to x
  10. j <- 1 to i
  11. } yield (i, j)
  12. }
  13. }
Add Comment
Please, Sign In to add comment