Merge branch 'native_boot'

This commit is contained in:
2026-02-23 19:07:07 -06:00
20 changed files with 38708 additions and 38130 deletions

View File

@@ -456,11 +456,12 @@ return {
},
test_mutual_recursion: function() {
var isOdd = null
var isEven = function(n) {
if (n == 0) return true
return isOdd(n - 1)
}
var isOdd = function(n) {
isOdd = function(n) {
if (n == 0) return false
return isEven(n - 1)
}