Call a foreign-language function: Difference between revisions

Line 893:
@show unsafe_string(p) # "Hello world"
ccall(:free, Void, (Ptr{Cuchar},), p)</lang>
 
'''PyCall''', [https://github.com/JuliaPy/PyCall.jl source]:
<lang julia>using PyCall
@pyimport math
@show math.cos(1) # 0.5403023058681398</lang>
 
=={{header|Kotlin}}==
Anonymous user