First commit

This commit is contained in:
2026-05-03 18:32:46 -05:00
commit 757902063b
14 changed files with 2095 additions and 0 deletions

13
tmp/file.tcross Normal file
View File

@@ -0,0 +1,13 @@
func Layout()
{
const tb = TextBox();
return VGrid(
[
[Text("Hello, world"),0]
[tb,0],
[Button("My Button", (btn)=>{}),0]
]
);
}