luau/CLI/src/ReplEntry.cpp

8 lines
210 B
C++
Raw Normal View History

// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details
#include "Luau/Repl.h"
int main(int argc, char** argv)
{
return replMain(argc, argv);
2022-02-04 16:45:57 +00:00
}