9 lines
96 B
Plaintext
9 lines
96 B
Plaintext
|
|
function test_true() {
|
||
|
|
return true
|
||
|
|
}
|
||
|
|
|
||
|
|
function test_one_equals_one() {
|
||
|
|
return 1 == 1
|
||
|
|
}
|
||
|
|
|