mun icon indicating copy to clipboard operation
mun copied to clipboard

String type

Open aghoneim92 opened this issue 3 years ago • 7 comments

I would like to add the String type to mun. Any pointers on where to start would be greatly appreciated :)

aghoneim92 avatar Jul 06 '22 22:07 aghoneim92

We dont have any support for this currently and its also not yet planned or designed at all. I imagine that we'd implement similar to how we implement arrays now.

@Wodann what do you think? Should strings be a build-in type, similar to how arrays work? Or should we implement strings on top of arrays?

baszalmstra avatar Jul 07 '22 13:07 baszalmstra

It might be good for us to discuss a design during our next Mun jam and provide that as a guideline for how it can be implemented.

In general, I'd be in favour of implementing it in the Mun standard library. The less complicated our compiler and runtime, the better. However, we'll have to take several things into account that make it hard to say one way or another - at this point:

  • ability to marshal a string - using the C ABI - in both mun_runtime and our C++ Runtime
  • ability to hot reload strings

Wodann avatar Jul 07 '22 13:07 Wodann

Ah bummer, I wanted to use this in my next project after seeing the 0.4.0 release on reddit, but after integrating it into my application (which was amazingly simple) and trying to write a logging function I quickly realized that strings aren't supported at all yet!

Shame too, this seems like an amazing project otherwise and seems plenty mature for early use, and I'm looking forward to using it in the future when strings are supported. 👍

catchouli avatar Jan 25 '23 20:01 catchouli