💾

From Esolang
Jump to navigation Jump to search

💾 is a programming language made by User:Yes in 2022

Commands

Insert disk into drive A and press any key               Make an (empty) text file named diska.txt
Insert disk into drive B and press any key               Make an (empty) text file named diskb.txt
Insert disk [diskname] into drive A and press any key    Make an (empty) text file named [diskname]a.txt
Insert disk [diskname] into drive B and press any key    Make an (empty) text file named [diskname]b.txt
READ [diskname][a/b].txt                                 Print/output the contents of [diskname][a/b].txt to the screen
WRITE [string][diskname][a/b].txt                        Append [string] to the contents of [diskname][a/b].txt

Examples

Hello, World

Insert disk into drive A and press any key
WRITE “Hello, World!” diska.txt
READ diska.txt