1
0
Fork 0
mirror of https://github.com/luau-lang/luau.git synced 2025-04-06 20:00:53 +01:00
luau/CLI/ReplEntry.cpp
2022-07-28 20:41:13 -07:00

7 lines
205 B
C++

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