Spyke
esolangs·Esoteric Languagesbywaspentalive

NewTiny is here V0.0102 - Now with Arrays and String operations

Sorry for the wall of text...

NewTiny is the next iteration in the tiny family - gone are line numbers and only A..Z for variables - now you can have lines with labels and named variables. The next update did bring named arrays.

Codeburg currently has the most current version

https://codeberg.org/WasPentalive/newtiny.git

Anyone want to run git for me? I am running into so much trouble with Codeberg. I can log into the webui. 2FA works fine. But I can not seem to authenticate properly to a cli git command. I can upload files to the webUI . But I can't get a merge to happen no matter what I do..

-- Update - got git to do cli commands properly now!! The Git is now a proper git and not simply storage for multiple tar.gz files. Do yourself a git clone!

I am manually creating versioned .tar.gz with everything for each version of newtiny as it comes out. It is essentially feature complete for V0 Several things planed for V1 if there is any interest.

Download the manual and take a look.

View original on lemmy.world
 # A NewTiny program to convert Celsius to Fahrenheit

Begin:  [ " Enter Celsius Temperature: " ] ?  
       
     [ ? ] Celsius
 
      [ 9 5 / Celsius * 32 + ] ?  CRLF 

      HALT

Celsius=     #declare a variable

1

I have mastered enough git to now have a proper repo. git clone yourself a copy and have at!

1

You reached the end

NewTiny is here V0.0102 - Now with Arrays and String operations | Spyke