Merge pull request #64 from Russell-S-Harper/development

First draft of I/O interface.
This commit is contained in:
Russell-S-Harper 2021-12-11 15:06:57 -05:00 committed by GitHub
commit 7e30587a16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 43 additions and 0 deletions

43
common/working.cmn Normal file
View File

@ -0,0 +1,43 @@
RCD(UNIT_TESTS)
CMN
BRS(FIBONACCI) ; #Expect FIBONACCI: 2.236 5.000
ESC
BRK
; Calculate the square root of five using this Fibonacci series identity:
;
; F(n) F(n-1) _
; ------ + ------ → √5 as n → ∞
; F(n-1) F(n)
;
; FIBONACCI: 2.236 5.000
BGN(FIBONACCI)
SET(R0, 1)
CPR(R1, R0)
_1 ADD(R2, R1, R0)
BRO(_2)
CPR(R0, R1)
CPR(R1, R2)
BRA(_1)
_2 DIV(R2, R0, R1)
DIV(R1, R1, R0)
ADD(R0, R1, R2)
MUL(R1, R0, R0)
EXT(S1, O_FIBONACCI)
RTN
END(FIBONACCI)
END(UNIT_TESTS)
RDT(_)
; Preset constants
; Output D format: decimal, leading sign for negative, no padding, no thousands separators, period for decimal, three decimal places
DEF(O_FIBONACCI, 'FIBONACCI: \eD0 \eD1\n')
END(_)