Filename "xxx" doesn't seem to be a valid filename. Please check if the filename your trying to execute is written correctly

From Esolang
Jump to navigation Jump to search

Filename "xxx" doesn't seem to be a valid filename. Please check if the filename your trying to execute is written correctly or WDS File error is an esolang inspierd by dmc, hasB, llehsrewoP and SOD-SM made by User:Ractangle.

Syntax

Typing anything in the input will emit this:

Filename "input" doesn't seem to be a valid filename.
Please check if the filename your trying to execute is written correctly

And that's basicly it.

Also that error message came from a fictional DOS

Interpriters

Python

Golfed:

while 1:print(f'Filename "{input()}" does not seem to be a valid filename.\nPlease check if the filename your trying to execute is written correctly')

Not Golfed:

while True:
    i=input()
    print(f'Filename "{i}" does not seem to be a valid filename.\nPlease check if the filename your trying to execute is written correctly')     

See also