Skip to content
This repository was archived by the owner on Nov 3, 2022. It is now read-only.

Commit d5d29bb

Browse files
author
Dilawar Singh
committed
Time to support / in path.
1 parent 270ea8c commit d5d29bb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import moose._moose as M
22
print("Using _moose from %s" % M.__file__)
33
print(dir(M))
4-
a = M.create('/a', 'Neutral', 1)
5-
print(a)
4+
a1 = M.create('a1', 'Neutral', 1)
5+
print(a1)
6+
a2 = M.create('a2', 'Neutral', 1)
7+
print(a2)

0 commit comments

Comments
 (0)