summaryrefslogtreecommitdiff
path: root/doc/user/simple.xml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/user/simple.xml')
-rw-r--r--doc/user/simple.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/user/simple.xml b/doc/user/simple.xml
index a015c918..acc438b5 100644
--- a/doc/user/simple.xml
+++ b/doc/user/simple.xml
@@ -442,11 +442,11 @@ Program('hello.c') # "hello.c" is the source file.
<scons_example name="simple_declarative">
<file name="SConstruct" printme="1">
-print "Calling Program('hello.c')"
+print("Calling Program('hello.c')")
Program('hello.c')
-print "Calling Program('goodbye.c')"
+print("Calling Program('goodbye.c')")
Program('goodbye.c')
-print "Finished calling Program()"
+print("Finished calling Program()")
</file>
<file name="hello.c">
int main() { printf("Hello, world!\n"); }