This commit is contained in:
2026-01-25 13:09:28 +01:00
parent 90618f2336
commit a830238d11
72 changed files with 4332 additions and 643 deletions
+13
View File
@@ -0,0 +1,13 @@
// retoor <retoor@molodetz.nl>
import "io" for Stdin
var size = Stdin.windowSize
System.print(size == null || size is List) // expect: true
if (size != null) {
System.print(size.count == 2)
System.print(size[0] > 0)
System.print(size[1] > 0)
}