fix: print no longer prints newline, but added println.
This commit is contained in:
parent
2624b83a79
commit
f3a6b4a225
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ namespace Jellyfin.Plugin.SmartPlaylist.Api {
|
||||||
})));
|
})));
|
||||||
return Lisp.Boolean.TRUE;
|
return Lisp.Boolean.TRUE;
|
||||||
};
|
};
|
||||||
executor.builtins["print"] = (x) => {
|
executor.builtins["println"] = (x) => {
|
||||||
sb.Append(string.Join(" ", x.Select((i) => {
|
sb.Append(string.Join(" ", x.Select((i) => {
|
||||||
if (i is Lisp.String i_s) {
|
if (i is Lisp.String i_s) {
|
||||||
return i_s.Value();
|
return i_s.Value();
|
||||||
|
|
Loading…
Add table
Reference in a new issue