Skip to content

Commit

Permalink
style: 🚨 Fix prettier issues in main automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
pklaschka authored and github-actions[bot] committed Sep 9, 2022
1 parent 846a12c commit d6f357c
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions docs/application/concepts/80-jvm.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,18 @@ import { Reference, Image } from '/components';

<!-- Brief Description (1-3 lines) of the concept: -->

The Java Virtual Machine (JVM) is an additional layer between the Java source code (in `.java` files) and the compiler
generated executable files.
It serves the purpose of combining the advantages of a scripting language (mainly platform independent code) with the speed of compiled languages.
For this reason, Java code is translated into "Byte Code" that is quicker to process by machines.
The Java Virtual Machine (JVM) is an additional layer between the Java source
code (in `.java` files) and the compiler generated executable files.
It serves the purpose of combining the advantages of a scripting language
(mainly platform independent code) with the speed of compiled languages. For
this reason, Java code is translated into "Byte Code" that is quicker to process
by machines.

## See also

<Reference to="https://en.wikipedia.org/wiki/Java_virtual_machine">Wikipedia JVM</Reference>
<Reference to="https://en.wikipedia.org/wiki/Java_virtual_machine">
Wikipedia JVM
</Reference>

<!--
Snippets
Expand Down

0 comments on commit d6f357c

Please sign in to comment.