LaTeX961925 views
中学数学623675 views
教育149490 views
MathPython496985 views
小学社会310429 views
りんご208673 views
高校倫理1439792 views
高校生物551654 views
いろは3009645 views
高校化学2923735 views

Config of root path - Pi/Pie

In the Pi/Pie project, developers can set the root path in index.pi.

+ html
+ path
+ option


this_file = path.this()
option.path.root = this_file.parent.path

html.print(data)

The path.this() return an Path object of the current file. The Path object has parent property that is also Path object, and path property that is not relative but absolute.

index.pi is directly placed in the project directory so its parent is project itself.

In the above case, the root path is set to the project path. The default root is “/” in the OS level.

I think Pi/Pie language can be used in Rollpie and local environments. If you use Pi/Pie as an alternative of Python or Java in your computer, you may not need to change the root path. In the Rollpie project, there is no need to change the root option.