Fortran – Data Types
In this guide, we will discuss Fortran Data Types. Fortran provides five intrinsic data types, however, you can derive your own data types as well. The five intrinsic types are…
In this guide, we will discuss Fortran Data Types. Fortran provides five intrinsic data types, however, you can derive your own data types as well. The five intrinsic types are…
In this guide, we will discuss Fortran Basic Syntax. A Fortran program is made of a collection of program units like a main program, modules, and external subprograms or procedures.…
In this guide, we will discuss Fortran Environment Setup. Setting up Fortran in Windows G95 is the GNU Fortran multi-architechtural compiler, used for setting up Fortran in Windows. The windows…
In this Fortran Tutorial we will discuss Fortran programming Language. Fortran was originally developed by a team at IBM in 1957 for scientific calculations. Later developments made it into a…
In this guide, we will discuss Erlang web programming. In Erlang, the inets library is available to build web servers in Erlang. Let’s look at some of the functions available in Erlang…
In this guide, we will discuss Erlang Drivers. Sometimes we want to run a foreign-language program inside the Erlang Runtime System. In this case, the program is written as a…
In this guide, we will discuss Erlang Performance. When talking about performance the following points need to be noted about Erlang. Funs are very fast − Funs was given its own…
In this guide, we will discuss Erlang Concurrency. Concurrent programming in Erlang needs to have the following basic principles or processes. The list includes the following principles − piD =…
In this guide, we will discuss Erlang OTP. OTP stands for Open Telecom Platform. It’s an application operating system and a set of libraries and procedures used for building large-scale,…
In this guide, we will discuss Erlang Spawnlink. This is used to create a new process link on a node. Syntax spawn(Node,Function) Parameters Node − The node on which the function…