Results 127 comments of lenscas

I'm all for Teal wanting people to be more explicit when it comes to converting types, however then there should be an easy and safe way to convert them as...

> How about `as!` for the unsafe version? What about `transmute!` ? Coming from Rust, `as` sounds pretty similar to `transmute` its just that in Rust's case, you get UB...

> transmute! is rather a mouthful. Considering the point of it is to totally sidestep the type system by doing what current day `as` is doing and have a new...

The table you return has no type, thus can not be referenced in the type system. As far as I know, `teal` has no "Self" shortcut. However, even if it...

Typescript is made to transpile to JS and to look like JS. That means that when using Typescript to lua it is easier to write code that would be idiomatic...

There are programs that bundle multiple lua files into 1 file (see https://github.com/teal-language/tl/issues/67 for some mentions). So, in theory it should be possible to keep the API exactly the same...

`-dev` packages on Debian and debian based distro's like Ubuntu are just the header files and the like for said libraries. Arch and Arch based distro's package those files directly...

@mrDIMAS I think that this issue can be closed now?

Setting the cursor position isn't possible on the web. https://stackoverflow.com/questions/4752501/move-the-mouse-pointer-to-a-specific-position

if it gets added, please only expose it for native builds, and/or add it behind a module that makes it painfully clear that it is native only. In my opinion,...