From 48b9705c12d7e43215c4a19cbc812d507964fd4a Mon Sep 17 00:00:00 2001 From: Mosolov Sergei Date: Tue, 13 Aug 2024 12:29:09 +0400 Subject: [PATCH 1/2] Make explicit statement that C++ compiled "to native machine code" All main implementation of the languages in the example (Java, C# and Python) are actually compiled to bytecode. IMHO it's better to clearly add explicit statement that C++ is compiled "to native machine code" unlike this languages to avoid ambiguity. --- talk/introduction/goals.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/talk/introduction/goals.tex b/talk/introduction/goals.tex index 1991e0d7..545aed25 100644 --- a/talk/introduction/goals.tex +++ b/talk/introduction/goals.tex @@ -13,7 +13,7 @@ \pause \begin{block}{Fast} \begin{itemize} - \item compiled (unlike Java, C\#, Python, ...) + \item compiled to native machine code (unlike Java, C\#, Python, ...) \item allows to go close to hardware when needed \end{itemize} \end{block} From 7e05a96c67ac4d809eddcb811e71b4fd054f61ab Mon Sep 17 00:00:00 2001 From: Sebastien Ponce Date: Fri, 20 Sep 2024 15:45:32 +0200 Subject: [PATCH 2/2] Update talk/introduction/goals.tex --- talk/introduction/goals.tex | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/talk/introduction/goals.tex b/talk/introduction/goals.tex index 545aed25..d0ef26d3 100644 --- a/talk/introduction/goals.tex +++ b/talk/introduction/goals.tex @@ -13,7 +13,10 @@ \pause \begin{block}{Fast} \begin{itemize} - \item compiled to native machine code (unlike Java, C\#, Python, ...) + \item compiled to native machine code + \begin{itemize} + \item unlike Java, C\#, Python, ... + \end{itemize} \item allows to go close to hardware when needed \end{itemize} \end{block}