9 lines
142 B
C++
9 lines
142 B
C++
#pragma once
|
|
|
|
class Interpreter;
|
|
|
|
// Register the builtin 'path' module (path utilities)
|
|
void registerPathModule(Interpreter& interpreter);
|
|
|
|
|