mirror of
https://github.com/vlang/v.git
synced 2025-09-15 07:22:27 +03:00
all: change optional to result of io (#16075)
This commit is contained in:
parent
6e46933c55
commit
f6844e9766
187 changed files with 1885 additions and 1874 deletions
|
@ -10,9 +10,9 @@ type FNAdder = fn (int, int) int
|
|||
|
||||
fn main() {
|
||||
library_file_path := os.join_path(os.dir(@FILE), dl.get_libname('library'))
|
||||
handle := dl.open_opt(library_file_path, dl.rtld_lazy)?
|
||||
handle := dl.open_opt(library_file_path, dl.rtld_lazy)!
|
||||
eprintln('handle: ${ptr_str(handle)}')
|
||||
f := FNAdder(dl.sym_opt(handle, 'add_1')?)
|
||||
f := FNAdder(dl.sym_opt(handle, 'add_1')!)
|
||||
eprintln('f: ${ptr_str(f)}')
|
||||
res := f(1, 2)
|
||||
eprintln('res: $res')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue