comparison R/rdyncall/demo/sqrt.R @ 0:0cfcc391201f

initial from svn dyncall-1745
author Daniel Adler
date Thu, 19 Mar 2015 22:26:28 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0cfcc391201f
1 # Package: rdyncall
2 # File: demo/sqrt.R
3 # Description: C math library demo (dynbind demo)
4
5 dynbind( c("msvcrt","m","m.so.6"), "sqrt(d)d;" )
6 print(sqrt)
7 sqrt(144)
8