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 5int main(int argc, char** argv) 6{ 7 setLuauFlagsDefault(); 8 9 return replMain(argc, argv); 10} 11 12