simple test case configured

This commit is contained in:
Nicolas Kruse 2025-10-14 23:08:56 +02:00
parent 8941b1837c
commit db458dd047
1 changed files with 2 additions and 1 deletions

View File

@ -8,7 +8,8 @@ def test_compile() -> None:
c1 = CPVariable(9) c1 = CPVariable(9)
#ret = [c1 / 4, c1 / -4, c1 // 4, c1 // -4, (c1 * -1) // 4] #ret = [c1 / 4, c1 / -4, c1 // 4, c1 // -4, (c1 * -1) // 4]
ret = [c1 // 4] #ret = [c1 // 4]
ret = [c1 / 4 + 3 * 3.6]
out = [Write(r) for r in ret] out = [Write(r) for r in ret]