Scala – Variables
In this guide, we will discuss Scala Variables. Variables are nothing but reserved memory locations to store values. This means that when you create a variable, you reserve some space…
In this guide, we will discuss Scala Variables. Variables are nothing but reserved memory locations to store values. This means that when you create a variable, you reserve some space…
WebAssembly has the code in a binary format called WASM. You can also get the text format in WebAssembly and it is called WAT (WebAssembly Text format). As a developer…
In this guide, we will discuss Scala Data Types. Scala has all the same data types as Java, with the same memory footprint and precision. Following is the table giving…
In this chapter, we are going to discuss the webassembly.validate() function that will validate the .wasm output. The .wasm is available when we compile C, C++ or rust code. You…
In this guide, we will discuss Scala Basic Syntax. If you have a good understanding on Java, then it will be very easy for you to learn Scala. The biggest…
In this guide, we will discuss Scala Environment setup. Scala can be installed on any UNIX flavored or Windows based system. Before you start installing Scala on your machine, you…
We have seen how to get a .wasm file from c /c++ code. In this chapter, we will convert the wasm into a WebAssembly modules and execute the same in…
In this guide, we will discuss Scala Tutorial. Scala is a modern multi-paradigm programming language designed to express common programming patterns in a concise, elegant, and type-safe way. Scala has…
This topic is about AWK - String Functions. AWK has the following built-in String functions − asort(arr [, d [, how] ]) This function sorts the contents of arr using GAWK's normal…
This topic is about AWK - Arithmetic Functions. AWK has the following built-in arithmetic functions − atan2(y, x) It returns the arctangent of (y/x) in radians. The following example demonstrates…