Build a Scala environment under Linux and write a simple Scala program

Build a Scala environment under Linux and write a simple Scala program

It is very simple to install Scala environment in Linux. If it is Ubuntu environment, it is even simpler. Just use apt-get to get it done. I use Ubuntu. Java/Scala system needs to be based on JDK, so JDK must be installed first.

1. Installing JDK is a commonplace and not worth mentioning.

2. Install Scala, as follows:

sudo apt-get install scala

as follows:

ubuntu@VM-0-15-ubuntu:~/taoge/scala$ scala -version
Scala code runner version 2.11.6 -- Copyright 2002-2013, LAMP/EPFL
ubuntu@VM-0-15-ubuntu:~/taoge/scala$

Of course, you can also use the Scala shell, as follows:

ubuntu@VM-0-15-ubuntu:~/taoge/scala$ scala
Welcome to Scala version 2.11.6 (OpenJDK 64-Bit Server VM, Java 1.8.0_151).
Type in expressions to have them evaluated.
Type :help for more information.
scala>

OK, let's write a Scala program to test it:

ubuntu@VM-0-15-ubuntu:~/taoge/scala$ cat test.scala 
object HelloWorld {
  def main(args: Array[String]): Unit = {
    println("Hello, world!")
  }
}
ubuntu@VM-0-15-ubuntu:~/taoge/scala$ scala test.scala 
Hello, world!
ubuntu@VM-0-15-ubuntu:~/taoge/scala$

Spark is written in Scala, so it is necessary to know some Scala.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • How to configure IDEA to use the Maven Helper plugin (detailed configuration)
  • Getting Started Tutorial on Configuring Tomcat Using IntelliJ IDEA
  • Detailed explanation of configuring Maven with IntelliJ IDEA (beginner's guide)
  • Use IDEA to configure Maven to build a development framework ssm tutorial
  • Tutorial on setting up Scala environment and configuring and using IDEA tool

<<:  Example of implementing skeleton screen with Vue

>>:  MySql 5.7.20 installation and configuration of data and my.ini files

Recommend

How to use React to implement image recognition app

Let me show you the effect picture first. Persona...

ElementUI implements the el-form form reset function button

Table of contents Business scenario: Effect demon...

A brief discussion on the issue of element dragging and sorting in table

Recently, when using element table, I often encou...

js implements the algorithm for specifying the order and amount of red envelopes

This article shares the specific code of js to im...

Solve the group by query problem after upgrading Mysql to 5.7

Find the problem After upgrading MySQL to MySQL 5...

How to use negative margin technology to achieve average layout in CSS

We usually use float layout to solve the compatib...

Docker Stack deployment method steps for web cluster

Docker is becoming more and more mature and its f...

jQuery implements accordion effects

This article shares the specific code of jQuery t...

5 Reasons Why Responsive Web Design Isn’t Worth It

This article is from Tom Ewer's Managewp blog,...

Usage of the target attribute of the html tag a

1: If you use the tag <a> to link to a page,...

How to deploy Angular project using Docker

There are two ways to deploy Angular projects wit...

2 reasons why html-css tag style setting does not work

1 CSS style without semicolon ";" 2 Tags...

Interpretation and usage of various React state managers

First of all, we need to know what a state manage...