this post was submitted on 04 Jun 2025
3 points (80.0% liked)

Esoteric Languages

296 readers
1 users here now

Icon base by Lorc under CC BY 3.0

founded 3 years ago
MODERATORS
 

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.

you are viewing a single comment's thread
view the rest of the comments
[–] waspentalive@lemmy.world 1 points 3 months ago* (last edited 3 months ago)
 # A NewTiny program to convert Celsius to Fahrenheit

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

      HALT

Celsius=     #declare a variable