Open abc-JYL opened 4 months ago
I have learned Lambda calculus, and I store my code (or equation) to a file, how can I load it? I have try and <
lci < main.lc
The code
'True' = (λx.λy.x) 'False' = (λx.λy.y) 'If' = (λb.λx.λy.b x y) If True 0 1
Sorry, a update, I mean to open the file via command line not the repl
I have learned Lambda calculus, and I store my code (or equation) to a file, how can I load it? I have try and <
lci < main.lc
The code