xhudik

Results 7 issues of xhudik

Hi there, is there any reason `scala3-decompiler` is a special app in cursier, while in dotty it has listed under standard: https://github.com/lampepfl/dotty/blob/master/bin/scalac ? Also, having `scala3-repl` instead of proper `scala3`...

[Scala Tools](https://docs.scala-lang.org/scala3/book/scala-tools.html) contains wonderful info on how to set up your first projects, what tools should be used for what. At the moment, the chapter is served at the end...

if you run: ``` var rec = 0 def llRange(lo: Int, hi: Int): LazyList[Int] = { rec = rec + 1 if (lo >= hi) LazyList.empty else LazyList.cons(lo, llRange(lo +...

the original `val cond: (Int, Int) => Boolean = ` has to be pretty hard for beginners (no notion about `_` before, also functions (`val`) are not so common than...

Very page(e.g. https://www.scala-exercises.org/std_lib/partial_functions ) at the bottom has `Edit Exercise`page link: ![image](https://user-images.githubusercontent.com/1122020/118157280-a7a9bb00-b41a-11eb-8844-31e98401e5d4.png) This link doenst work: ```bash #it points to https://github.com/scala-exercises/exercises-stdlib/edit/master/src/main/scala/stdlib/PatternMatching.scala #it should points to instead https://github.com/scala-exercises/exercises-stdlib/edit/main/src/main/scala/stdlib/PatternMatching.scala ``` (replace `main`...

without .md suffix, github and all other systems takes it as a text

Hi I'm sorry this is question - not an issue but I couldnt find a better place to ask. is there any possibility to get full output message (even without...