From e2621617f141cd94ddcd93639b4c00e6742e6286 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Sat, 13 Nov 2021 21:33:13 +0100 Subject: [PATCH] Changes to example. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 40b2289cc..0aa7d5e4a 100644 --- a/README.md +++ b/README.md @@ -80,8 +80,8 @@ define DoubleStack = Stack; // have an parameterization of Stack) so it would // be same as declaring IntStack2 an alias of IntStack -// How to import an external function -// here it is libc's printf: +// Importing an external C function is straightforward +// here is an example of importing libc's printf: extern fn int printf(char* format, ...); fn void test()