13 lines
159 B
Text
13 lines
159 B
Text
|
#include <string.xh>
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char** argv) {
|
||
|
string a;
|
||
|
|
||
|
a = "abc";
|
||
|
printf("a: %s\n", a.text);
|
||
|
}
|
||
|
|
||
|
// vim: set ft=c :
|