You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would be nice to turn the /// doc comments above functions and modules into /** */ when exported to a Javascript target. That allows the documentation to be available when hovering the exported function.
Gleam
/// This is the Gleam versionpubfnadd(a:Int,b:Int)->Int{a+b}
Javascript
/** This is the JS version */exportfunctionadd(a,b){returna+b;}
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
I would be nice to turn the
///
doc comments above functions and modules into/** */
when exported to a Javascript target. That allows the documentation to be available when hovering the exported function.Gleam
Javascript
The text was updated successfully, but these errors were encountered: