fe icon indicating copy to clipboard operation
fe copied to clipboard

A tiny, embeddable language implemented in ANSI C

Results 22 fe issues
Sort by recently updated
recently updated
newest added

Looking at your repositories I feel like someone still understands the meaning of minimalism, KISS and overall the art of programming. Kudos! I'd like to ask few things as I'm...

like if i had a fe file with the code: `(= input "hello there")` and i wanted to access the value of the input variable in c, how would i...

What is a lisp without recursion? Not very useful. Therefore it is a pity that with fe you cannot specify a recursive function, using 'let'. You are forced to use...

Thanks for _fe_ -- a very nice tiny interpreter. How could I make an `eval` function (or macro)? i.e. such that `(= a '(+ 1 2))` `(eval a)` => 3...

For increased portability.

I went through all of your repositories after searching for how to get OOP in ```lua``` and found your very well-written [repository](https://github.com/rxi/classic/) on that topic. I really like your overall...

how would I check the amount of arguments the user passed to a function, or at least check if there's an argument after the current one? I wanna make a...

Whenever I attempt to run any of the scripts provided in [fe/scripts](https://github.com/rxi/fe) using cel7 the window turns completely black, I am not sure if it's an issue in the files...

# Summary This pull request introduces a CodeQL workflow to enhance the security analysis of this repository. # What is CodeQL CodeQL is a static analysis tool that helps identify...

For example `(is nil ((mac () nil)))` returns `nil`, although the macro expands to `nil` and this should be equivalent to `(is nil nil)`. The problem is that when the...