From 8e770dd443eee6b4400481ec2544e820491a5ce3 Mon Sep 17 00:00:00 2001 From: Mosolov Sergei Date: Fri, 20 Sep 2024 17:55:06 +0400 Subject: [PATCH] Make explicit statement that C++ compiled "to native machine code" (#521) * 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. * Update talk/introduction/goals.tex --------- Co-authored-by: Sebastien Ponce --- 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 1991e0d7..d0ef26d3 100644 --- a/talk/introduction/goals.tex +++ b/talk/introduction/goals.tex @@ -13,7 +13,10 @@ \pause \begin{block}{Fast} \begin{itemize} - \item compiled (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}