Erlang programming Language free keyboard shortcuts kyes

Erlang programming language and keyboard shortcuts and erlang language basic details. IDs shortcut keys.

Erlang programming Language Basic Details:

  1. Purpose: Erlang is a functional programming language designed for building scalable, real-time systems with high availability.
  2. Concurrency: It provides built-in support for concurrency, distribution, and fault tolerance.
  3. Syntax: Erlang syntax is influenced by Prolog and functional programming languages like Lisp.
  4. OTP: Erlang OTP (Open Telecom Platform) is a set of libraries and design principles for building robust systems.
  5. Use Cases: Telecommunications, banking systems, multiplayer online games, and other systems requiring high concurrency and fault tolerance.

Erlang Shortcut Keys:

  • Compile: C-c C-k (in Emacs Erlang mode) compiles the current buffer.
  • Load File: C-c C-l (in Emacs Erlang mode) loads the current buffer.
  • Erlang Shell: Start with erl command.
  • Comment/Uncomment: C-c C-c (in Emacs Erlang mode) comments or uncomments the current line or region.
  • Help: C-h f (in Emacs Erlang mode) displays documentation for a function.

These shortcuts are commonly used in Emacs Erlang mode, which is a popular environment for developing in Erlang. If you use a different editor or IDE, the shortcut keys may vary.

Basic Erlang Example:

Here’s a simple example to illustrate the basics of Erlang:

Factorial Calculation

% Define a module named 'factorial'
-module(factorial).
% Export the 'fact' function with 1 argument
-export([fact/1]).

% Base case: factorial of 0 is 1
fact(0) -> 1;
% Recursive case: N! = N * (N-1)!
fact(N) when N > 0 -> N * fact(N - 1).

To compile and run this example:

  1. Save the code in a file named factorial.erl.
  2. Open the Erlang shell and compile the module:
   erl
   1> c(factorial).
  1. Call the fact function:
   2> factorial:fact(5).
   120

Shortcut Keys Table:

Shortcut KeyDescription
Ctrl + GEnter Erlang shell (REPL)
Ctrl + C, Ctrl + LClear the Erlang shell
Ctrl + C, Ctrl + CInterrupt a running Erlang process
Ctrl + C, Ctrl + DQuit the Erlang shell
Ctrl + PSwitch Erlang shell process
Ctrl + AMove cursor to beginning of line in shell
Ctrl + EMove cursor to end of line in shell
TabAuto-completion in shell
Up Arrow / Down ArrowNavigate command history in shell
Ctrl + RSearch command history in shell
F1Access Erlang documentation in shell

These shortcuts help navigate and manage the Erlang shell effectively, boosting productivity and ease of use.

One Click

  1. Computer Keyboard Shortcut keys with Microsoft, windows, iOS kyes list
  2. Microsoft keyboard shortcuts kyes list Word, Excel, PowerPoint, Outlook
  3. Coding Editor software Keyboard Shortcut Keys
  4. All 3d or 2d software Keyboard Shortcut Keys
  5. All Adobe software Keyboard Shortcut Keys
  6. C Programming Language Keyboard Shortcut Keys
  7. Scala Programming Language Keyboard Shortcut Keys
  8. Erlang Programming Language Keyboard Shortcut Keys
  9. Emoji Keyboard Shortcut Keys get all in one click
  10. Lisp Syntax Programming Language Keyboard Shortcut Keys
  11. Haskell Programming Language Keyboard Shortcut Keys
  12. Python Programming Language Keyboard Shortcut Keys
  13. Java Programming Language Keyboard Shortcut Keys
  14. Pascal Programming Language Keyboard Shortcut Keys
  15. C++ Programming Language Keyboard Shortcut Keys
  16. Ruby Programming Language Keyboard Shortcut Keys
  17. JavaScript Programming Language Keyboard Shortcut Keys
  18. Php Programming Language Keyboard Shortcut Keys
  19. Perl Programming Language Keyboard Shortcut Keys
  20. Html Programming Language Keyboard Shortcut Keys
  21. Prolog Programming Language Keyboard Shortcut Keys
  22. Markdown Programming Language Keyboard Shortcut Keys
  23. Xml Programming Language Keyboard Shortcut Keys
  24. Go Programming Language Keyboard Shortcut Keys
  25. Datalog Programming Language Keyboard Shortcut Keys
  26. Ada Programming Language Keyboard Shortcut Keys
  27. X86 assembly Programming Language Keyboard Shortcut Keys
  28. ARM assembly Programming Language Keyboard Shortcut Keys
  29. Sql Programming Language Keyboard Shortcut Keys
  30. R Programming Language Keyboard Shortcut Keys

WebForestSite

Webforestsite This is my another website you get here website collection copyright free commercial use website.

  • Free image , video, music get Website collection
  • Free Graphics and Fonts, Colors, Icons , illustration get more Website collection
  • Free Book and Webtoon, comics, ebook get more Website collection
  • Free mockup and template get more Website collection
  • Free Logo maker get more Website collection
  • Free movies, webseries and kdrama cdrama get more Website collection
  • Free Download movies webseries get more Website collection
  • Free 3d animation texture 3d model get more Website collection
  • Free Ai video generator image generator get more Website collection
  • Free Edit anything online get more Website collection
  • Free Education learning new skills get more Website collection
One thought on “Erlang programming language and free keyboard shortcuts”

Leave a Reply

Your email address will not be published. Required fields are marked *