You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:F
" // Duplicate n
1 > // Check if n > 1
( // If true
" 1 - F * // n * factorial(n - 1) <<<<<<<<<<<<<< error, never gets to do `*`
) /E ( // Else condition wrapped in parentheses
1 // Return 1
)
;
5 F . // Calculate factorial of 5, prints: 120