在 Windows 10 中使用 linux 子系统时,如何在 notty 中将一张图像放在另一张图像之上?
How do I position one image above the other in notty when using a linux subsystem in Windows 10?
想用Notty,所以一直在看"basics" repo.
所以我下载basics_wow.ml
:
open Notty
open Notty_unix
(*
* ocamlbuild -pkg notty -pkg notty.unix basics_wow.native
*)
let () =
let wow = I.string A.(fg lightred) "Wow!" in
I.(wow <-> (void 2 0 <|> wow))
|> Notty_unix.eol
|> Notty_unix.output_image
我将其输入我的终端:ocamlbuild -pkg notty -pkg notty.unix basics_wow.native
。
然后我尝试运行它:./basics_wow.native
但是并没有得到哇!以上哇!我明白了:
我如何获得哇!以上哇! ?
这目前似乎不可能。参见 this issue
想用Notty,所以一直在看"basics" repo.
所以我下载basics_wow.ml
:
open Notty
open Notty_unix
(*
* ocamlbuild -pkg notty -pkg notty.unix basics_wow.native
*)
let () =
let wow = I.string A.(fg lightred) "Wow!" in
I.(wow <-> (void 2 0 <|> wow))
|> Notty_unix.eol
|> Notty_unix.output_image
我将其输入我的终端:ocamlbuild -pkg notty -pkg notty.unix basics_wow.native
。
然后我尝试运行它:./basics_wow.native
但是并没有得到哇!以上哇!我明白了:
我如何获得哇!以上哇! ?
这目前似乎不可能。参见 this issue