Skip to content
This repository has been archived by the owner on Oct 3, 2018. It is now read-only.
/ Isle Public archive

🏝️ A programming language made in javascript

License

Notifications You must be signed in to change notification settings

eliassjogreen/Isle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

         ___
        /. _\
.--.|/_/__
  ''.--o/___  \
/.'o|_o  '.|
  |/   |_|   '
  '    |_|
         |_|
      __.|_|.__
     /   |_|   ``""-..__
    .    |_| (¯)__|¯|___'-._
    |   ´"'"`|¯(_-< / -_)   \
    \        |_/__/_\___|   |
     '-.__.--._          .-'
               `--...--'`

Isle Programming Language 🏝️

Usage

TODO

Examples

Hello world example:

import ("console");

console.println("hello world!");

# Prints "hello world!"

Fibonacci example:

import ("console");

function fibonacci(n) {
	if (n < 2){
		return 1;
	} else {
		return fibonacci(n-2) + fibonacci(n-1);
	}
}

console.println(fibonacci(7));

# Prints 21

Helpful resources

Links