About the only PC oriented IDE I'm aware of is z390. It's Java based and needs an up to date Java installed on your computer. For execution, it sort of emulates ESA/390 (that's a machine) running a very stripped down OS/390 (that's an operating system). Here's a Hello World program designed to run in batch.
HELLO CSECT
USING *,12
SAVE (14,12),,*
LR 12,15
LA 15,SAVEAREA
ST 13,4(,15)
ST 15,8(,13)
LR 13,15
OPEN (PRINT,OUTPUT)
PUT PRINT,MSG
CLOSE PRINT
L 13,4(,13)
RETURN (14,12),T,RC=0
SAVEAREA DC 18F'0'
PRINT DCB DSORG=PS,MACRF=PM,DDNAME=SYSPRINT,RECFM=FBA,LRECL=121
MSG DC CL121' HELLO WORLD'
END HELLO
SAVE, OPEN, PUT, CLOSE, RETURN and DCB are all macros, not machine instructions. I'm pretty sure they are supplied with z390.
I've never tried running z390 myself, but many people think well of it. Good luck.