Merge branch 'feature/datetime' of https://github.com/0x5eal/lune-datetime into feature/datetime

This commit is contained in:
Erica Marigold 2023-08-28 00:44:42 +05:30
commit 6b4000d253
No known key found for this signature in database
GPG key ID: 23CD97ABBBCC5ED2

View file

@ -74,11 +74,11 @@ local luau = {}
``` ```
@param source The string that'll be compiled into bytecode @param source The string that'll be compiled into bytecode
@param CompileOptions The luau compiler options used when compiling the source string @param compileOptions The luau compiler options used when compiling the source string
@return luau bytecode @return luau bytecode
]=] ]=]
function luau.compile(source: string, CompileOptions: CompileOptions?): string function luau.compile(source: string, compileOptions: CompileOptions?): string
return nil :: any return nil :: any
end end