You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was wondering if we can get this example to work in a near future
from phylanx import Phylanx
class test:
n = 0
@Phylanx
def __init__(self,n):
self.n = n
@Phylanx
def do(self,m):
self.n += m
if __name__ == "__main__":
t = test(10)
t.do(10)
Or at least make some comment in the Readme that this is not supported yet
The text was updated successfully, but these errors were encountered:
from phylanx import Phylanx
@Phylanx
class test:
n = 0
def __init__(self,n):
self.n = n
def do(self,m):
self.n += m
if __name__ == "__main__":
t = test(10)
t.do(10)
I was wondering if we can get this example to work in a near future
Or at least make some comment in the Readme that this is not supported yet
The text was updated successfully, but these errors were encountered: