summaryrefslogtreecommitdiff
path: root/Examples/guile/multimap/runme.scm
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/guile/multimap/runme.scm')
-rw-r--r--Examples/guile/multimap/runme.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/Examples/guile/multimap/runme.scm b/Examples/guile/multimap/runme.scm
new file mode 100644
index 0000000..edc1972
--- /dev/null
+++ b/Examples/guile/multimap/runme.scm
@@ -0,0 +1,30 @@
+;;; Test out some multi-argument typemaps
+
+(use-modules (example))
+
+; Call the GCD function
+
+(define x 42)
+(define y 105)
+(define g (gcd x y))
+
+(display "The gcd of ")
+(display x)
+(display " and ")
+(display y)
+(display " is ")
+(display g)
+(newline)
+
+; Call the gcdmain() function
+(gcdmain #("gcdmain" "42" "105"))
+
+; Call the count function
+(display (count "Hello World" #\l))
+(newline)
+
+; Call the capitalize function
+(display (capitalize "hello world"))
+(newline)
+
+