Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 122 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 122 Bytes

jit_lang

b = function() {
    print(5)

    a = 5
    a = a + 1

    return a
}

b()
b()
b()

a = b
print(a())