changes testcase to //

This commit is contained in:
Nicolas Kruse 2025-10-14 23:09:46 +02:00
parent 1380fc662b
commit a7a8f11828
2 changed files with 2 additions and 3 deletions

View File

@ -49,7 +49,7 @@ def test_compile():
c2 = CPVariable(2)
#ret = function(c1, c2)
ret = [c1 / 4 + 3 * 3.6]
ret = [c1 // 4]
out = [Write(r) for r in ret]

View File

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