'#Scala CLI' - Tool or Toy?

preview_player
Показать описание
Scala CLI is a command-line tool to interact with the Scala language. Let's see if it's a toy or a useful tool for professionals.

Get it here:

The GitHub issue is here:

Table of Contents:
00:00 Intro
02:58 Installation
06:01 Demo/Showcase/Tutorial
17:23 The Bug Report

Cheers and Happy Coding!

#tutorial
Рекомендации по теме
Комментарии
Автор

Table of Contents:
00:00 Intro
02:58 Installation
06:01 Demo/Showcase/Tutorial
17:23 The Bug Report

DevInsideYou
Автор

"I swear to God eventually it will create some files" 🤣

sanjsahayam
Автор

I believe if you use double quotes the new line char will work.

donwinston
Автор

You can also use here documents to read multiple lines from bash into a file, like

tee output.txt << EOF
hello
world
EOF

It's one of my favorite features of bash. Unfortunately it's not in fish shell.

echosystemd
Автор

About the \n in the first minutes of video, probably echo - e "...." will do the trick

antonispolykratis
Автор

My team is seriously considering converting our very large and very very old CLI apps we’ve built over the last 15 years to Scala. (from TCL!)

I first thought Scala-CLI would be perfect for this. But now I know more about it and don’t think so. It seems to be more of a sandbox thing. Best to use Maven or Gradle and don’t bother with shebang scripts.

donwinston
Автор

So I don't need to install coursier for now, and I should just use scala-cli? in matter that scala-cli uses coursier under the hood?

yarosav