Skip to content

Latest commit

 

History

History
25 lines (14 loc) · 915 Bytes

File metadata and controls

25 lines (14 loc) · 915 Bytes

Overview

This program displays the fibonacci and lucas sequences using Erlang. It can display sequences of a certain length, sequences up to a maximum value, and numbers in specific positions in the sequence.

I created this to teach myself the basics of Erlang, as well as recursion and data types.

Software Demo Video

Development Environment

This project was developed using VS Code.

Useful Websites

Some websites that were helpful in developing this project.

Future Work

These are a few steps to improve this code should I need to:

  • Implementing memoization to improve performance time for large numbers.
  • Allowing for sequences that expand into the negative numbers as well as positive numbers.