some bugfixes, getting closer

This commit is contained in:
Nathan Braswell
2016-03-24 21:32:28 -04:00
parent 0a91165172
commit b650a9af03
5 changed files with 46 additions and 29 deletions

View File

@@ -19,6 +19,10 @@ fun operator+(first: *char, second: ref string): string {
return string(first) + second
}
/*fun operator+<T>(first: *char, second: T): string {*/
/*return string(first) + second*/
/*}*/
fun string(in:*char):string {
var out.construct(in):string
return out