mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
dl: add comments for the dl/example
This commit is contained in:
parent
c32547f382
commit
05f6e8b5aa
2 changed files with 11 additions and 0 deletions
|
@ -5,6 +5,8 @@ pub const (
|
|||
dl_ext = get_shared_library_extension()
|
||||
)
|
||||
|
||||
// get_shared_library_extension returns the platform dependent shared library extension
|
||||
// i.e. .dll on windows, .so on most unixes, .dylib on macos.
|
||||
pub fn get_shared_library_extension() string {
|
||||
mut res := '.so'
|
||||
$if macos {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue