mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
This is a copy/adaptation of the python example (#13105)
This commit is contained in:

committed by
GitHub

parent
7c2f3e4530
commit
357ac0bb5a
7
examples/call_v_from_ruby/README.md
Normal file
7
examples/call_v_from_ruby/README.md
Normal file
@ -0,0 +1,7 @@
|
||||
A simple example to show how to call a function written in v from ruby
|
||||
|
||||
Step 1: Compile the v code to a shared library using `v -d no_backtrace -shared test.v`
|
||||
|
||||
Step 2: Run the ruby file using `ruby test.rb`
|
||||
|
||||
Note: you do not need `-d no_backtrace` if you use gcc or clang .
|
23
examples/call_v_from_ruby/test.rb
Normal file
23
examples/call_v_from_ruby/test.rb
Normal file
@ -0,0 +1,23 @@
|
||||
require 'bundler/inline'
|
||||
|
||||
gemfile do
|
||||
source 'https://rubygems.org'
|
||||
gem 'ffi'
|
||||
end
|
||||
|
||||
require 'ffi'
|
||||
|
||||
module Lib
|
||||
extend FFI::Library
|
||||
|
||||
ffi_lib File.join(File.dirname(__FILE__), 'test.so')
|
||||
|
||||
attach_function :square, [:int], :int
|
||||
attach_function :sqrt_of_sum_of_squares, [:double, :double], :double
|
||||
end
|
||||
|
||||
puts "Lib.square(10) result is #{Lib.square(10)}"
|
||||
raise 'Cannot validate V square().' unless Lib.square(10) == 100
|
||||
|
||||
raise 'Cannot validate V sqrt_of_sum_of_squares().' unless \
|
||||
Lib.sqrt_of_sum_of_squares(1.1, 2.2) == Math.sqrt(1.1*1.1 + 2.2*2.2)
|
13
examples/call_v_from_ruby/test.v
Normal file
13
examples/call_v_from_ruby/test.v
Normal file
@ -0,0 +1,13 @@
|
||||
module test
|
||||
|
||||
import math
|
||||
|
||||
[export: 'square']
|
||||
fn square(i int) int {
|
||||
return i * i
|
||||
}
|
||||
|
||||
[export: 'sqrt_of_sum_of_squares']
|
||||
fn sqrt_of_sum_of_squares(x f64, y f64) f64 {
|
||||
return math.sqrt(x * x + y * y)
|
||||
}
|
Reference in New Issue
Block a user