I’ll preface this that I am new to coding so I’m sure this is user error and any advice would be greatly appreciated. I installed Pixlet with no issues and was using the “Hello World” example - I put it in a document and changed the file extension to .star on my desktop (I’m using a mac if that makes any difference). When I follow the steps and run “Pixlet serve hello_world.star”, I receive the following error: error loading applet: failed to load applet: starlark.ExecFile: hello_world.star:1:3: stray backslash in program
Like I said, I copied it exactly multiple times and I keep getting the same error. Not sure if I’m creating the .star file incorrectly or something else.
The hello_world code I’m using in the .star file is below:
load(“render.star”, “render”)
def main():
return render.Root(
child = render.Text(“Hello, World!”)
)
Any help is welcome!