X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/047ca9a2a6c647c2cc014d53460b8c359b3238c7..114b09ec24846920da14854ba06cf48d1d7d6dba:/examples/lua/state_cloner/duplicated_globals.lua diff --git a/examples/lua/state_cloner/duplicated_globals.lua b/examples/lua/state_cloner/duplicated_globals.lua index d4c2331290..0675f8ec2b 100644 --- a/examples/lua/state_cloner/duplicated_globals.lua +++ b/examples/lua/state_cloner/duplicated_globals.lua @@ -22,7 +22,7 @@ function replace(...) please_dont_replace_me(...) end --- Show a hello message and prints the global string +-- Shows a hello message and prints the global string function please_dont_replace_me(...) simgrid.info("Hello from please_dont_replace_me(). I'm lucky, I still exist in this state.") @@ -32,7 +32,7 @@ end -- Prints the value of global_string function print_global() - simgrid.info("Global string is '"..global_string.."'") + simgrid.info("Global string is '" .. global_string .. "'") end print_global()