Explore >> Select a destination


You are here

www.martinkysel.com
| | tannerdolby.com
14.9 parsecs away

Travel
| | The Fibonacci sequence is a series of numbers where each number in the sequence is the sum of the two preceding numbers, with the sequence beginning with 0 and 1.
| | imapenguin.com
14.0 parsecs away

Travel
| | A common task in our code is to determine the length of something. In this example, let's check the length of a string like "are you keeping up?" In Python, this is crazy easy. #!/usr/bin/env python message = "are you keeping up?" len(message) In 6510 Assembly, this is also easy. Not crazy easy, but straightforward anyway. messagelength ldx #$00 checkdel lda message,x cmp #$00 ; or whatever we're using as a delimeter beq done inx jmp checkdel done stx messagelen rts .byte messagelen 0 message .null "are ...
| | idlip.github.io
14.4 parsecs away

Travel
| |
| | sciruby.com
58.8 parsecs away

Travel
| Almost two months ago, in December, we release our first beta of NMatrix, our linear algebra library for the Ruby language. Rather than discussing ...