git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@11743 626c5289-ae23-0410-ae9c-e8d60b6d4f22
10 lines
187 B
Python
10 lines
187 B
Python
|
|
from example import *
|
|
|
|
printf("hello\n")
|
|
|
|
name = "%shoot"
|
|
num = 22
|
|
printf("Hello %s. Your number is %d\n" % (name, num))
|
|
print("hello there %s." % name);
|
|
printf("Your result is 90%.\n")
|