work in progress [might break]

This commit is contained in:
Leon van Kammen 2024-02-28 09:05:56 +01:00
parent 27cf12118b
commit 64968e243f
2 changed files with 10 additions and 0 deletions

4
test/helloworld/test.js Normal file
View file

@ -0,0 +1,4 @@
xrfragment = require('./dist/xrfragment.js').xrfragment
console.dir(xrfragment.URI.parse("#pos=foo"))
console.log("hello world")

6
test/helloworld/test.py Normal file
View file

@ -0,0 +1,6 @@
from dist import xrfragment
frag = xrfragment.xrfragment_XRF.toDict( xrfragment.xrfragment_URI.parse("#pos=foo",None) )
print("hello world")
print( frag.keys() )