From 8a9cb3347e6394667ea12865832fc768108a4275 Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Thu, 14 Dec 2017 12:51:12 -0800 Subject: [PATCH] Updated Home (markdown) --- Home.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Home.md b/Home.md index 7abe62b..8aace5c 100644 --- a/Home.md +++ b/Home.md @@ -8,6 +8,6 @@ libAPI:someFunc() ``` If the function doesn't have any parameters, the `()` are still required because the function will be accessed as just a `word` without them. The syntax superficially resembles object oriented language constructs and not by accident. Note that function pointers don't get the same parameter/return values checking that regular function definitions get. The libraries APIs all return one value from every function so there isn't a danger of forgetting to override the return value count. However, the parameter counts aren't verified so you need to beware of getting them correct. -Smaller libraries with only a few functions will export the individual functions and you will call them just like any other. +Smaller library APIS will export the individual functions and you will call them just like any other. In no particular order... \ No newline at end of file