Warning: session_start(): open(/var/lib/php/sessions/sess_d70qrgv158vjnb5gj2rt96mo85, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
import bool
import or
(true | false) => c
expect c
---
import bool
import or
(true | true) => c
expect c
---
import bool
import or
(true | true) => c
expect c
---
import bool
import or
(false | false) => c
don't expect c
---
proc {
unless bla:
blubb
unless blubb:
test
}
expect blubb
don't expect test
---
// test if a certain indentation problem is fixed
proc {
bla (
x
)
}
bla $multiline
=> proc {
a
b $multiline
}
expect a
---
import iota
proc {
for $x in iota(2):
print $x
}
expect (print 1)
expect (print 2)
don't expect (print 3)