We are currently working on new rules for what content should and shouldn't be allowed on this website, and are looking for feedback! See Esolang:2026 topicality proposal to view and give feedback on the current draft.

Talk:Forbin

From Esolang
Jump to navigation Jump to search

Is ! even needed at all?

Couldn't you just do:

not v {
  for _: 1..v {
    return 0;
  }
  return 1;
}