aboutsummaryrefslogtreecommitdiff
path: root/lib/DATS/writer.dats
diff options
context:
space:
mode:
Diffstat (limited to 'lib/DATS/writer.dats')
-rw-r--r--lib/DATS/writer.dats18
1 files changed, 8 insertions, 10 deletions
diff --git a/lib/DATS/writer.dats b/lib/DATS/writer.dats
index b8625f4..6a183c1 100644
--- a/lib/DATS/writer.dats
+++ b/lib/DATS/writer.dats
@@ -96,6 +96,12 @@ in
in
+ implement initialize$fwork<writer_t>(v) =
+ (
+ v := @{position = 0, color_code = code_value(White,Black)};
+ let prval() = opt_some v in true end
+ )
+
implement put_string (str : string) : void = let
implement exec_void$fwork<writer_t>(v) = let
implement string_foreach$fwork<writer_t> (c,env) = put_char(c,env)
@@ -103,21 +109,13 @@ in
in
end
in
- $effmask_ref(exec_void<writer_t>(writer_ref))
+ $effmask_ref(exec_init<writer_t>(writer_ref))
end
implement clear_screen() : void = let
implement exec_void$fwork<writer_t>(v) = _clear_screen(v)
- implement initialize$fwork<writer_t>(v) =
- (
- v := @{position = 0, color_code = code_value(White,Black)};
- let prval() = opt_some v in true end
- )
in
- if not writer_ref->initialized then
- initialize<writer_t>(writer_ref);
-
- exec_void<writer_t>(writer_ref)
+ exec_init<writer_t>(writer_ref)
end
end