Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Roblox
GitHub Repository: Roblox/luau
Path: blob/master/CLI/src/ReplEntry.cpp
2725 views
1
// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
2
#include "Luau/Repl.h"
3
#include "Luau/Flags.h"
4
5
int main(int argc, char** argv)
6
{
7
setLuauFlagsDefault();
8
9
return replMain(argc, argv);
10
}
11
12