aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Bañados Schwerter2022-10-24 17:27:43 +0000
committerFelipe Bañados Schwerter2022-10-24 17:27:43 +0000
commitb0644202ce201774445a09f103908498f3838820 (patch)
treecba46668028fb92b4ee97929de9ef312a67e1e5c
parentd642394b47cadfa4003369c8e0d2c828c9091bb8 (diff)
Base smalltalk export
-rw-r--r--entries/fbanados/fib.st1
1 files changed, 1 insertions, 0 deletions
diff --git a/entries/fbanados/fib.st b/entries/fbanados/fib.st
new file mode 100644
index 0000000..8431a09
--- /dev/null
+++ b/entries/fbanados/fib.st
@@ -0,0 +1 @@
+'From Pharo10.0.0 of 15 June 2022 [Build information: Pharo-10.0.0+build.521.sha.14f541319d443f4261f84f4fa19fbb34460a5edb (64 Bit)] on 24 October 2022 at 11:26:20.436554 am'! !Integer methodsFor: '*Fibonacci' stamp: 'FelipeBanados 10/24/2022 11:13'! fibonacciNumber self <= 2 ifTrue: [ ^ 1 ]. ^ (self - 1) fibonacciNumber + (self - 2) fibonacciNumber.! ! \ No newline at end of file