mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
13891d428f
WriteString just does the simple and and converts the passed string to a byte-slice. This can be made zero-copy later with unsafe, if needed. WriteAt returns ErrNotImplemented, to match Seek() and ReadAt(). Fixes #2157