(no commit message)

This commit is contained in:
2025-12-20 13:39:53 -08:00
parent 64fecd246d
commit 36ce5aadf3

View File

@@ -6,7 +6,7 @@ class MyProgram(PrecompiledProgram):
super().__init__(**kwargs) super().__init__(**kwargs)
def forward(self, **kwargs): def forward(self, **kwargs):
return "Hello, world!" return "Hello, world"
program = MyProgram() program = MyProgram()