Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

narvenlang/narven

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Narven Programming Language

Narven is a programming language designed to make a harder python, It is python compatible and cross platform

Example

md turtle

function draw_spiral():
    screen = turtle.Screen()
    screen.bgcolor("black")
    screen.title("Narven Spiral")

    t = turtle.Turtle()
    t.speed(0)
    t.pensize(2)
    t.color("cyan")

    length = 5
    angle = 20

    # Draw the spiral
    for i in range(100):
        t.forward(length)
        t.right(angle)
        length += 2 

    println("Spiral complete! Click to exit.")
    screen.exitonclick()

draw_spiral()

Why Narven?

Cross Platform (Unix,Linux,Windows,Solaris,MacOS) Harder (Not easy, just hard)

Installation

Download Python (any version but 3.x)

Then download the source code

Then extract it and run nsc.bat (if your an windows user)

Linux Running

first exexcute

chmod +x nsc.sh

then execute

dos2unix nsc.sh

and now type

./nsc.sh (file.nv)

Helping

you can fork the repo and modify Narven and send a pull request, Thanks for contributing!

Morty Proxy This is a proxified and sanitized view of the page, visit original site.