namespace TestNamespace import System.Runtime.InteropServices [DllImport("__Internal", EntryPoint: "PrintFunc")] def PrintFunc(val as int): pass class TestClass: static def TestStaticMethod(val1 as int): print "In TestClass: ", val1 PrintFunc(val1 * 2) return