2 Commits 5007d4fb8a ... e22ac14c49

Author SHA1 Message Date
  Matthias Ladkau e22ac14c49 doc: Modifying main README.md 3 years ago
  Matthias Ladkau 5007d4fb8a doc: Modifying main README.md 3 years ago
1 changed files with 3 additions and 3 deletions
  1. 3 3
      ecal-lang.md

+ 3 - 3
ecal-lang.md

@@ -556,9 +556,9 @@ Stdlib Functions
 --
 It is possible to extend the ECAL interpreter with additional functions and constants. This can either be done through:
 
-- Using [Go plugins](https://golang.org/pkg/plugin/) which allow the loading of code via dynamic linking.
-- Using a bridge to Go. Standard Go functions using primitive argument types can be easily added using [code generation](https://blog.golang.org/generate).
-- Adding custom function definitions to the ECAL interpreter by extending the interpreter code.
+- Using [Go plugins](https://golang.org/pkg/plugin/) which allow the loading of code via dynamic linking. See ECAL's [documentation](https://devt.de/krotik/ecal#using-go-plugins-in-ecal).
+- Using a bridge to Go. Standard Go functions using primitive argument types can be easily added using [code generation](https://blog.golang.org/generate). See the ECAL's [stdlib/generate](https://devt.de/krotik/ecal/src/master/stdlib/generate/generate.go#L51).
+- Adding custom function definitions to the ECAL interpreter by extending the interpreter code. See ECAL's [stdlib package](https://pkg.go.dev/devt.de/krotik/ecal/stdlib).
 
 For the first one you need to define a `.ecal.json` in the scripts folder. For the other options you need to recompile the ECAL interpreter code for EliasDB. Use the [replace directive](https://github.com/golang/go/wiki/Modules#when-should-i-use-the-replace-directive) in EliasDB's `go.mod` file to point the compiler to an alternative version of the ECAL interpreter which includes your changes.