Skip to main content
Commonmark migration
Source Link

#Factor, 62 bytes

Factor, 62 bytes

:: f ( a b -- x ) a b "%s %s" printf a b + a b - f ; recursive 

recursive, or else the callstack runs out too quickly.

#Factor, 62 bytes

:: f ( a b -- x ) a b "%s %s" printf a b + a b - f ; recursive 

recursive, or else the callstack runs out too quickly.

Factor, 62 bytes

:: f ( a b -- x ) a b "%s %s" printf a b + a b - f ; recursive 

recursive, or else the callstack runs out too quickly.

Source Link
cat
  • 6.1k
  • 2
  • 27
  • 45

#Factor, 62 bytes

:: f ( a b -- x ) a b "%s %s" printf a b + a b - f ; recursive 

recursive, or else the callstack runs out too quickly.