mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 10:13:19 +02:00
15 lines
153 B
C++
15 lines
153 B
C++
|
|
|
|
|
|
#include <utf8.h>
|
|
#include <wx/string.h>
|
|
|
|
int main( int argc, char** argv )
|
|
{
|
|
|
|
UTF8 bozo = "bozo";
|
|
|
|
wxString s = bozo;
|
|
|
|
return 0;
|
|
} |