mirror of https://github.com/Nonannet/copapy.git
other test case: c1 // 3.3 + 5
This commit is contained in:
parent
a7a8f11828
commit
d2e831b83a
|
|
@ -49,7 +49,7 @@ def test_compile():
|
|||
c2 = CPVariable(2)
|
||||
|
||||
#ret = function(c1, c2)
|
||||
ret = [c1 // 4]
|
||||
ret = [c1 // 3.3 + 5]
|
||||
|
||||
out = [Write(r) for r in ret]
|
||||
|
||||
|
|
|
|||
|
|
@ -8,7 +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 // 3.3 + 5]
|
||||
|
||||
out = [Write(r) for r in ret]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue