This code errors on *this* and *that*, is it really written in them?

25

2

Inspired by I'm not the language you're looking for!

Challenge

Choose two different programming languages, and write a program that prints the following line to stdout (or equivalent):

This program errors out in <the current language> :P

and then generates different kind of error in each of the two languages.

Rules

Some rules are taken from the original challenge.

  • In the output, language names should exactly follow:
    • The name listed on TIO, optionally excluding the version number and/or the implementation name (e.g. if you use JavaScript (Node.js) as one of your languages, you can use JavaScript for your language name, but not JS or Javascript.)
    • The full name on the official website (or GitHub repo) if your language of choice is not available on TIO.
  • Neither program should take any input from the user.
  • You may use comments in either language.
  • Two different versions of the same language count as different languages.
    • If this is done, the program should output the major version number, and if running on two different minor versions, should report the minor version also.
    • You should not use prebuilt version functions (this includes variables that have already been evaluated at runtime).
  • Two different command line flags in the same language also count as different languages as per this meta consensus, as long as the flags don't include code fragments (such as -Dblahblah... in C).
    • If this is done, the program should also output the flag used.
  • Two errors are considered different unless both errors are generated by the same semantics (such as "division by zero", "segmentation fault", or "index out of range").
    • If a language's runtime does not exit after an error, but reports the error in some way to the user, it's a valid error.
    • If a language does not discriminate the error messages but has a known list of reasons that cause error, you must specify the reason, not the error message.
      An example is ><>, which has only one error message something smells fishy..., but esolangs wiki page has a list of error reasons.
  • Syntax error is not allowed unless it is generated by calling eval() or similar.
  • Throwing something manually (via throw(JS), raise(Python), die(Perl) or similar) is allowed, but all of them are considered as one kind of error.
  • Error by invalid command in 2D or golflangs is also allowed (and treated as one kind of error).

Examples

Python and Ruby

  • Python: This program errors out in Python :P to stdout, then undefined identifier
  • Ruby: This program errors out in Ruby :P to stdout, then index out of bounds

C89 and C99

  • C89: This program errors out in C 89 :P to stdout, then division by zero
  • C99: This program errors out in C 99 :P to stdout, then segmentation fault

Note that the version number should always be separated from the language name by a space.

Python 2.7.9 and Python 2.7.10

  • Python 2.7.9: This program errors out in Python 2.7.9 :P to stdout, then syntax error on eval
  • Python 2.7.10: This program errors out in Python 2.7.10 :P to stdout, then key error on dict

Perl and Perl -n

  • Perl: This program errors out in Perl :P to stdout, then invalid time format
  • Perl -n: This program errors out in Perl -n :P to stdout, then try to open a file that doesn't exist

Winning condition

This is , so the shortest code in bytes wins. But you're always encouraged to post an answer that is fun or interesting even if it isn't very short.

Bubbler

Posted 2018-03-21T04:32:46.937

Reputation: 16 616

Sandbox post (deleted) – Bubbler – 2018-03-21T04:58:58.767

Does the error need to halt the program? – Jo King – 2018-03-21T05:00:57.113

I initially thought so. However, if there are some languages that may continue (possibly with undefined behavior) after something like "division by zero", with some mechanism to acknowledge that the program encountered that error, then I will happily allow that. – Bubbler – 2018-03-21T05:12:54.487

I think I already know the answer, but just in case: may the sentence This program errors out in ... contain mixed tabs/spaces instead of just spaces? – Kevin Cruijssen – 2018-03-21T09:08:33.103

Related (print two different texts in two different languages). – Kevin Cruijssen – 2018-03-21T10:13:06.457

Can there be trailing/leading whitespace printed as well? – Conor O'Brien – 2018-03-21T14:21:48.803

Can the language names in the output be generated from built-in functions? – Tom Carpenter – 2018-03-21T17:43:37.973

What about languages that are too old to have an official website or GitHub repository? – Mark – 2018-03-21T22:09:50.143

@KevinCruijssen Spaces only. – Bubbler – 2018-03-21T23:00:50.217

@ConorO'Brien Optional trailing newline is OK, everything else is not. – Bubbler – 2018-03-21T23:01:41.533

@TomCarpenter It's fine, as long as it fits the format. – Bubbler – 2018-03-21T23:02:11.467

@Mark I'll ask it on meta. That may be a future reference for any other challenges that want to involve the language name in some way. – Bubbler – 2018-03-21T23:11:41.767

@Mark had that exact case in my submission, I used what I considered "canonical" names with links to some informational websites -- hope this is fine. – Felix Palmen – 2018-03-22T08:27:37.383

Can we output to stderr? It is a default output method

– Logern – 2018-10-22T04:21:51.530

Answers

35

Python 2 / Python 3, 60 bytes

print("This program errors out in Python %d :P"%(3/2*2))*1;a
  • Python 2 got NameError: name 'a' is not defined
  • Python 3 got unsupported operand type(s) for *: 'NoneType' and 'int'

Python 2:

  • / is integer division, 3 / 2 got 1; int(3 / 2 * 2) is 2.
  • print is a statement, so the first statement read as print((...)*1), here *1 means repeating the string once.
  • second statement referenced a non-existing variable, which caused the error.
  • Try it online!

Python 3:

  • '/' is floating number division, 3 / 2 got 1.5; int(3 / 2 * 2) is 3.
  • print is a function, so the first statement read as (print(...))*1.
  • function print returns None; Multiplication do not work on None x int, so it report "unsupported operand".
  • Try it online!

tsh

Posted 2018-03-21T04:32:46.937

Reputation: 13 072

15

C and C++, 114 101 bytes

-13 bytes thanks to l4m2!

#include<stdio.h>
main(){auto d=.5;printf("This program errors out in C%s :P",d?"++":"");2[&d]+=1/d;}

Segmentation fault in C++, floating point exception in C.

auto is defaulted to int in C so (int).5 becomes 0, so trying to divide by it is basically division by zero.

In C++ 1/d is 2, adding it to address of d and trying to change that address' value throws a segfault.

Try it in C++!
Try it in C!

betseg

Posted 2018-03-21T04:32:46.937

Reputation: 8 493

1Not sure if it helps, but if you can map C/C++ to 2 and 0, you could use "++"+n, where n is 0 for C++ and 2 for C – Conor O'Brien – 2018-03-21T14:47:08.663

2d?"++":"" 9 char, "++"+4*d 8 char. But gets C/C++ backwards. Sigh. – Yakk – 2018-03-22T15:30:45.287

1int main(){auto d=.5;printf("This program errors out in C%s :P",d?"++":"");2[&d]+=1/d;}(105) though I don't know why – l4m2 – 2018-05-04T08:36:14.957

1Also int can be omitted – l4m2 – 2018-05-04T08:37:29.157

Suggest L"⬫"+!d instead of d?"++":"" – ceilingcat – 2018-12-07T20:54:24.110

14

JavaScript + HTML / HTML + JavaScript, 160 bytes

<!--
document.write`This program errors out in JavaScript + HTML :P`()
--><script>document.write`This program errors out in HTML + JavaScript :P`+X</script>

<!--
document.write`This program errors out in JavaScript + HTML :P`()
--><script>document.write`This program errors out in HTML + JavaScript :P`+X</script>

Not sure if this count two languages, but it is funny.

tsh

Posted 2018-03-21T04:32:46.937

Reputation: 13 072

So, the former is undefined identifier, the latter is function call on a non-function type. Technically I'd consider the former HTML and the latter JavaScript, but really nice idea. – Bubbler – 2018-03-21T23:35:19.350

A good use of <!-- ... --> as single line comment markers (I know that this is in the spec for backward compatibility reasons) – Shieru Asakoto – 2018-10-12T08:50:43.990

12

Java 8 & C99, 172 bytes

//\
interface a{static void main(String[]a){System.out.print("This program errors out in Java 8 :P");a[1]=""/*
main(n){{n=puts("This program errors out in C99 :P")/0/**/;}}

Based on my answer for the 'abc' and 'cba' challenge.

Try it in Java 8 - resulting in ArrayIndexOutOfBoundsException: 1.
Try it in C - resulting in Floating point exception: division by zero is undefined.

Explanation:

//\
interface a{static void main(String[]a){System.out.print("This program errors out in Java 8 :P");a[1]=""/*
main(n){{n=puts("This program errors out in C99 :P")/0/**/;}}

As you can see in the Java-highlighted code above, the first line is a comment due to //, and the C-code is a comment due to /* ... */, resulting in:

interface a{static void main(String[]a){System.out.print("This program errors out in Java 8 :P");a[1]="";}}

So it prints to STDOUT, and then tries to access the second program-argument (when none given), so it produces the ArrayIndexOutOfBoundsException.


//\
interface a{static void main(String[]a){System.out.print("This program errors out in Java 8 :P");a[1]=""/*
main(n){{n=puts("This program errors out in C99 :P")/0/**/;}}

Not sure how to correctly enable C-highlighting, because lang-c results in the same highlighting as Java.. But //\ will comment out the next line, which is the Java-code, resulting in:

main(n){{n=puts("This program errors out in C99 :P")/0;}}

So it prins to STDOUT, and then gives a division by zero error.

Kevin Cruijssen

Posted 2018-03-21T04:32:46.937

Reputation: 67 575

I think It will work with both C89 and C99. Don't hold me to that. – SIGSTACKFAULT – 2018-03-21T17:01:44.057

The // was added to C with C99. – betseg – 2018-03-22T05:29:03.843

Thanks to both of you, I've changed it to C99. – Kevin Cruijssen – 2018-03-22T07:47:06.447

Why a[1] instead of a[0]? – xehpuk – 2018-03-22T18:15:41.903

@xehpuk No particular reason. It doesn't matter which digit I use and I had already filled in a 1 from the start. Could have used 0, 9, etc. as well. If I have something to edit about this post I will change it to 0 as well at the same time. – Kevin Cruijssen – 2018-03-22T19:03:26.460

11

Java 8 & Whitespace, 439 431 428 408 bytes

                         






























 interface a{static void    main(String[]a){System.out.print("This program errors out"+
" in Java 8 :P");a[0]="";}}














Try it in Java 8 - resulting in ArrayIndexOutOfBoundsException: 0.
Try it in Whitespace - resulting in user error (Can't do Infix Plus).

Explanation:

Java 8:

interface a{static void main(String[]a){System.out.print("This program errors out"+
" in Java 8 :P");a[0]="";}}

So it prints to STDOUT, and then tries to access the first program-argument (when none given), so it produces the ArrayIndexOutOfBoundsException.


Whitespace:

[S S T  T   T   T   T   T   N
_Push_-31_P][S S T  T   T   S T S T N
_Push_-53_:][S S T  T   S S T   T   T   T   N
_Push_-79_space][S S T  T   S T S N
_Push_-10_e][S S T  T   T   S S N
_Push_-12_c][S S T  T   T   T   S N
_Push_-14_a][S S S T    N
_Push_1_p][S S S T  S S N
_Push_4_s][S S T    T   S T S N
_Push_-10_e][S S S T    S T N
_Push_5_t][S S T    T   T   S N
_Push_-6_i][S S T   T   T   T   N
_Push_-7_h][S S T   T   T   S S S N
_Push_-24_W][S T    S S T   S T S N
_Copy_0-based_10th_(-79_space)][S S T   T   N
_Push_-1_n][S S T   T   T   S N
_Push_-6_i][S T S S T   S N
_Copy_0-based_2nd_(-79_space)][S S S T  S T N
_Push_5_t][S S S T  T   S N
_Push_6_u][S S S N
_Push_0_o][S T  S S T   T   N
_Copy_0-based_3rd_(-79_space)][S S S T  S S N
_Push_4_s][S S S T  T   N
_Push_3_r][S S S N
_Push_0_o][S S S T  T   N
_Push_3_r][S N
S _Duplicate_top_(3_r)][S S T   T   S T S N
_Push_-10_e][S T    S S T   T   S N
_Copy_0-based_6th_(-79_space)][S S T    T   S N
_Push_-2_m][S S T   T   T   T   S N
_Push_-14_a][S S S T    T   N
_Push_3_r][S S T    T   S S S N
_Push_-8_g][S S S S (_Note_the_additional_S_here)N
_Push_0_o][S S S T  T   N
_Push_3_r][S S S T  N
_Push_1_p][S T  S S T   T   T   N
_Copy_0-based_7th_(-79_space)][S S S T  S S N
_Push_4_s][S S T    T   T   S N
_Push_-6_i][S S T   T   T   T   N
_Push_-7_h][S S T   T   T   S T T   N
_Push_-27_T][N
S S N
_Create_Label_LOOP][S S S T T   S T T   T   T   N
_Push_111][T    S S S _Add][T   N
S S _Print_as_character][N
S N
N
_Jump_to_Label_LOOP]

Letters S (space), T (tab), and N (new-line) added as highlighting only.
[..._some_action] added as explanation only.

Try this highlighted version.

Whitespace is a stack-based language that ignores everything except for spaces, tabs and new-lines. Here is the same program in pseudo-code:

Push all unicode values of "P: ecapsetihW tuo srorre margorp sihT", minus 111
Start LOOP
  Push 111
  Add the top two stack values together
  Print as character
  Go to the next iteration of the LOOP

It will error as soon as it's done printing all values and the stack is empty when it tries to do the Add (TSSS), which requires two items on the stack.

I've generated the constant 111 with this Java program, which I've also used for previous ASCII-related challenges I've made in Whitespace. In addition, I've used some copies for the spaces to save bytes.

One important thing to note is the trick I've used to place the Java program within the Whitespace answer. Let me start by explaining how a number is pushed in Whitespace:

S at the start: Enable Stack Manipulation;
S: Push what follows as Number;
S or T: Positive or Negative respectively;
Some S and/or T, followed by an N: Number as binary, where T=1 and S=0.

Here some examples:

  • Pushing the value 1 will be SSSTN;
  • Pushing the value -1 will be SSTTN;
  • Pushing the value 111 will be SSSTTSTTTTN.
  • Pushing the value 0 can be SSSSN, SSTSN, SSSN, SSTN, SSSSSSSSSSSSN, etc. (When you use SSSN (or SSTN), we don't have to specify the binary part, because it's implicitly 0 after we've stated its sign.)

So just SSSN is enough for pushing the value 0 (used for the letter o in this case). But, to place the Java program in this golfed Whitespace program, I needed an additional space, so the first two os are pushed with SSSN, but the third one is pushed with SSSSN, so we have enough spaces for the sentence of the Java program.

Kevin Cruijssen

Posted 2018-03-21T04:32:46.937

Reputation: 67 575

10

><> and Foo, 42 bytes

#o<"This code errors in "p"Foo"'><>'" :P"/

Try it in ><>!

Try it in Foo!

Foo prints everything in ", as is well documented, and tries to divide by zero at the end. It ignores the '><>'.

><> pushes the "Foo" to the stack, but immediately pops it using p. After it prints everything to the stack with #o< it exits when the the stack is empty with the only error message it knows, something smells fishy...

Jo King

Posted 2018-03-21T04:32:46.937

Reputation: 38 234

Reason of the error is important, not the error message. The esolang page on ><> has a list of error reasons, so I believe you should specify one of them, not something smells fishy.... – Bubbler – 2018-03-21T05:32:33.247

2@Bubbler The error is caused by popping from an empty stack. – Esolanging Fruit – 2018-03-21T14:14:12.870

3Using p to pop Foo is very clever! – Esolanging Fruit – 2018-03-21T14:14:25.330

10

CBM BASIC and 6502 machine code (C64), 142 144 bytes

Had to add 2 bytes after realizing a syntax error wasn't allowed ....


Hexdump of .prg file:

01 08 50 08 00 00 8F 5A 49 52 49 41 A9 17 8D 18 D0 A2 30 BD 30 08 20 D2 FF E8
E0 4B D0 F5 A2 30 BD 05 08 20 D2 FF E8 E0 44 D0 F5 A9 0D 20 D2 FF A2 1A 4C 37
A4 22 36 35 30 32 20 4D 41 43 48 49 4E 45 20 43 4F 44 45 20 3A D0 22 20 20 20
20 20 00 8D 08 01 00 97 35 33 32 37 32 2C 32 33 3A 99 22 D4 48 49 53 20 50 52
4F 47 52 41 4D 20 45 52 52 4F 52 53 20 4F 55 54 20 49 4E 20 C3 C2 CD 2D C2 C1
D3 C9 C3 20 3A D0 22 2C 58 AD 50 00 00 00

The CBM BASIC view, as listed in the C64's editor:

0 remziriastepgosubinput#new0exp0 dim.clrsavekinput#stepnew0exp<white> dim.clrsavedinput#stepstep
 dim.newl7to"6502 machine code :P"
1 poke53272,23:print"This program errors out in CBM-BASIC :P",x/p

original listing

Attention: It's impossible to correctly enter this program in the BASIC editor. Don't even try to edit this program in the BASIC editor, it will crash. Still, it's a runnable BASIC program ;)


The 6502 machine code view:

         01 08                          ; load address

.C:0801  50 08       BVC $080B          ; jump to real start of mc

         ; line number (00 00), REM (8F) and "ziria"
.C:0803  00 00 8F 5A 49 52 49 41

.C:080b  A9 17       LDA #$17
.C:080d  8D 18 D0    STA $D018          ; set upper/lower font
.C:0810  A2 30       LDX #$30
.C:0812  BD 30 08    LDA $0830,X
.C:0815  20 D2 FF    JSR $FFD2          ; print "This program errors ..."
.C:0818  E8          INX
.C:0819  E0 4B       CPX #$4B
.C:081b  D0 F5       BNE $0812
.C:081d  A2 30       LDX #$30
.C:081f  BD 05 08    LDA $0805,X
.C:0822  20 D2 FF    JSR $FFD2          ; print "6502 machine code :P"
.C:0825  E8          INX
.C:0826  E0 44       CPX #$44
.C:0828  D0 F5       BNE $081F
.C:082a  A9 0D       LDA #$0D
.C:082c  20 D2 FF    JSR $FFD2          ; print a newline
.C:082f  A2 1A       LDX #$1A           ; error code for "can't continue"
.C:0831  4C 37 A4    JMP $A437          ; jump to error handling routine

.C:0834  22 ; '"'

         ; "6502 machine code :P"
.C:0835  36 35 30 32 20 4D 41 43 48 49 4E 45 20 43 4F 44 45 20 3A D0

         ; '"', some spaces, and next BASIC line
.C:0849  22 20 20 20 20 20 00 8D 08 01 00 97 35 33 32 37 32 2C 32 33 3A 99 22

         ; "This program errors out in CBM-BASIC :P"
.C:0860  D4 48 49 53 20 50 52 4F 47 52 41 4D 20 45 52 52 4F 52 53 20 4F 55 54
.C:0877  20 49 4E 20 C3 C2 CD 2D C2 C1 D3 C9 C3 20 3A D0

.C:0887  22 2C 58 AD 50 00 00 00

Online demo, type run to run as BASIC, sys 2049 to run as machine code, list to show it interpreted as BASIC code.

Running as BASIC produces a division by zero error in 1, running as machine code a can't continue error

screenshot


Explanation:

The first two bytes of a .prg file are the load address in little endian, this is $0801 (decimal 2049) here, which is the start address for BASIC programs on the C64. run starts this program in the BASIC interpreter, while sys 2049 is the command to run a machine code program at address 2049.

As you can see, the first line in the BASIC view is a comment (rem) containing "garbage" and part of the required output string. This is the machine code program and some filler bytes. You see some "random" BASIC commands there because CBM-BASIC programs contain the commands "tokenized" as single byte values, and some of these values are the same as opcodes used in the machine code. The machine code reuses the string present in the second line of code for its output.

The first two bytes of a line of a basic program are a pointer to the next line, here $0850. This is carefully chosen because 50 08 is also a 6502 branch instruction jumping over the next 8 bytes when the overflow flag is not set -- this is used to jump somewhere in the middle of this "comment" line when executed as machine code. The 50 is the opcode used here, so the second line has to start at 0850 for the trick to work. That's why you see a sequence of 5 20 bytes (space characters) to fill up. The machine code actively jumps to the ROM error handling routine to give a "can't continue" error.

The BASIC code is pretty straightforward; as a second argument to "print", two uninitialized variables (having a value of 0 in CBM BASIC) are divided, triggering the "division by zero" error.

Felix Palmen

Posted 2018-03-21T04:32:46.937

Reputation: 3 866

2You, sir, are a Real Programmer. How did you come up with this? Atari programming? – Orion – 2018-03-23T04:10:52.763

@Orion thanks :) Basically, I started with the second line entered as normal BASIC, moved it out of the way using the machine code monitor built into vice (emulator), assembled the machine code directly to ram and manually repaired the line pointers of the basic program... – Felix Palmen – 2018-03-23T08:10:49.193

6

C and Python, 126 116 bytes

-10 bytes thanks to @Bubbler!

#1/*
-print("This program errors out in Python :P")
'''*/
main(c){c=puts("This program errors out in C :P")/0;}//'''

In Python print() is a None, so trying to get its negative doesn't make sense, so Python throws an error.

In C printf() returns an int, so dividing it by zero gives a floating point exception.

Try it in C!
Try it in Python!

betseg

Posted 2018-03-21T04:32:46.937

Reputation: 8 493

1

You can use -print(...) to raise a TypeError in Python, and then you're free to make Floating Point Error (division by zero) in C. Combined with some redundant newlines, here is 116 bytes (Python, C).

– Bubbler – 2018-03-21T07:01:53.567

5

Python (2) and QB64, 82 bytes

1#DEFSTR S
s="QB64"
'';s="Python"
print"This program errors out in "+s+" :P"
CLS-1

To test the Python version, you can Try it online! To test the QB64 version, you'll need to download QB64.

What Python sees

1#DEFSTR S
s="QB64"
'';s="Python"
print"This program errors out in "+s+" :P"
CLS-1

The first line is just the bare expression 1 (a no-op) followed by a comment.

The second line sets s to the string "QB64", but the third line immediately changes it to "Python". The fourth line prints the message accordingly.

The fifth line is another bare expression, but it raises a NameError because of the undefined name CLS.

What QB64 sees

1#DEFSTR S
s="QB64"
'';s="Python"
print"This program errors out in "+s+" :P"
CLS-1

The first line, numbered 1#, defines every variable whose name starts with S (case-insensitive) as a string variable. This means we don't have to use s$, which would be a syntax error in Python.

The second line sets s to the string "QB64". ' starts a comment in QB64, so the third line doesn't do anything. The fourth line prints the message accordingly.

The fifth line tries to CLS (clear screen) with an argument of -1. But since CLS only accepts arguments of 0, 1, or 2, this produces the error Illegal function call. The error creates a dialog box asking the user if they want to continue execution or abort. Technically, this means the error isn't fatal (in this case, you can pick "continue execution" and the program simply ends without further problems); but the OP has explicitly allowed languages that can continue after an error, so QB64's behavior should be fine.

DLosc

Posted 2018-03-21T04:32:46.937

Reputation: 21 213

5

Attache + Wolfram Language (Mathematica), 82 bytes

s:="Attache"
s=" Mathematica "
Throw[Print["This program errors out in",s,":P"]-0]

Try Attache online! Try Mathematica online!

This pivots upon the meaning of the operator = in the two languages. In Attache, it compares for equality, but in Mathematica, it performs variable assignment. := does variable assignment in both languages.

Now, in Attache, Print returns an array of strings printed, and subtraction is not possible with strings and integers (namely, 0). So, a type error is thrown. In Mathematica, Print returns Null, and Mathematica is just fine subtracting 0 from that. But, we manually throw that null with Throw, giving a nocatch error.

Conor O'Brien

Posted 2018-03-21T04:32:46.937

Reputation: 36 228

note: this doesn't work for current versions of attache due to a bug. I'll try to fix that soonish – Conor O'Brien – 2018-10-12T02:13:03.467

3

Perl 5 and JavaScript (Node.js), 96 bytes

eval("printf=console.log");printf("This program errors out in %s :P",("Perl","JavaScript"));$//0

This makes use of the fact that (...) is a list in Perl that printf will use the leftmost element of and the fact that it's the comma operator in JavaScript, which will return the rightmost argument.

Causes a division by zero error in Perl and a ReferenceError because $ is not defined in JavaScript.

Try the Perl online!

Try the JavaScript online!

Dom Hastings

Posted 2018-03-21T04:32:46.937

Reputation: 16 415

3

Octave and MATLAB, 67 bytes

v=ver;disp(['This program errors out in ' v(1).Name ' :P']);v(--pi)

Try it online!

Notes: The code assumes MATLAB is installed with no toolboxes (or that the names of any toolbox that is installed don't start with letters A to M).

How it works:

The code gets the version data for the interpreter and toolboxes using ver. Running v(1).Name extracts the name of the first product, this will return either Octave or MATLAB assuming the note above holds true.

The program will then display the required string, complete with Octave or MATLAB as required.

Finally we do v(--pi).

In Octave, -- is the pre-decrement operator. As such it attempts to pre-decrement which fails as the variable pi doesn't exist (pi is actually function, not a variable).

This program errors out in Octave :P
error: in x-- or --x, x must be defined first

In MATLAB, the pre-decrement operator doesn't exist. As such the statement is interpreted as v(-(-pi)) which is equal to just v(pi). However pi is not an integer, so cannot be used to index into the v array, giving an error.

This program errors out in MATLAB :P
Subscript indices must either be real positive integers or logicals.

Tom Carpenter

Posted 2018-03-21T04:32:46.937

Reputation: 3 990

3

C++ 14 (gcc) / C++ 17 (gcc), 107 105 bytes

#include<cstdio>
int*p,c=*"??/0"/20;int
main(){*p=printf("This program errors out in C++ 1%d :P",4+c)/c;}

Try it online! (C++14)

Try it online! (C++17)


Assumes that <cstdio> declares printf in the global namespace (in addition to std) and that the basic execution character set uses ASCII values, which are both true using g++ on Linux.

The basic catch here is that C++17 eliminated trigraphs from the language.

In C++14, "??/0" contains a trigraph and is equivalent to "\0". So *"??/0" is zero, and c is set to zero. The number 4 is passed as an argument to printf, then the division by c causes undefined behavior. On Linux, this happens before *p comes into the picture, and the program gets a SIGFPE.

In C++17, "??/0" is exactly the length 4 string it appears to be. So *"??/0" is '?' or 63, and c is set to 3. The number 7 is passed as an argument to printf, and this time the division by c is valid. Since p is a namespace member, it gets zero-initialized at the start of the program and has a null pointer value, so *p is undefined behavior. On Linux, because the program attempts to modify memory at address zero, the program gets a SIGSEGV.

aschepler

Posted 2018-03-21T04:32:46.937

Reputation: 717

main's return type can be omitted, so -3 bytes. – Max Yekhlakov – 2018-10-12T05:36:42.953

2

Foo / CJam, 51 50 bytes

"This program errors out in ""Foo"/'C'J'a'm" :P"Li

This exits with a divide-by-zero error in Foo, and a NumberFormatException in CJam.

To CJam:

  • A string literal (between quotes) pushes itself to the stack. Items from the stack are automatically printed without a separator when the program terminates.
  • / tries to split the string This program errors out in on the substring Foo. Since the string does not contain the substring, this yields a singleton array containing the original string, which displayed in exactly the same way.
  • 'x is a character literal for x, which is printed the same way as a one-character string. This way, we can push data for CJam that is ignored by Foo (I haven't figured out how to make a loop not execute in Foo).
  • Li tries to cast the empty string to an integer, which fails. Everything from the stack is printed.

To Foo:

  • A string literal (between quotes) prints itself.
  • / tries to divide the current cell by the top stack element (which is an implicit 0). For some reason, divide-by-0 errors aren't fatal in Foo, so this just prints the message
    Only Chuck Norris can divide by zero.
    to STDERR and keeps going.
  • Unrecognized characters ('C'J'a'm and Li) are ignored.

Esolanging Fruit

Posted 2018-03-21T04:32:46.937

Reputation: 13 542

2Isn't the latter 50 bytes? – Bubbler – 2018-03-21T05:14:07.747

@Bubbler Forgot to edit that, sorry. – Esolanging Fruit – 2018-03-21T14:12:14.333

7

I think there's a bug in the Foo interpreter. It should obviously error with Only Jon Skeet can divide by zero. https://meta.stackexchange.com/a/9138

– None – 2018-03-21T15:17:58.913

2

PHP 7+ / JavaScript, 90 89 bytes

This uses 2 languages with very similar syntax, allowing to write this code on both languages.

The language separation is done by a property not present in JavaScript: PHP considers [] (empty array) to be a falsy value while it is truthy in JavaScript (because it is an object and objects are always truthy, even new Boolean(false)).

$X='This program errors out in %s :P';([]?console.log($X,'JavaScript'):printf($X,PHP))();

Execution:

Will focus on the following piece of code: ([]?console.log($X,'JavaScript'):printf($X,PHP))();.

The string attribution works the same in both languages.

This code uses the "ternary operator" (Javascript, PHP), which works mostly the same way in both languages.

Javascript

Javascript will run the console.log($X,'JavaScript') piece, which returns undefined.

Later on, when you try to execute (...)(), you get an Uncaught TypeError: (intermediate value)(intermediate value)(intermediate value) is not a function (in Google Chrome).

PHP

PHP will execute the printf($X,PHP) piece.

In PHP, the printf function returns the length of the output.

PHP has an interesting functionality: it can execute functions who's name is stored in a variable (or, since PHP7, as the result of an expression), which prevents a syntax error.

PHP then will try to run the function who's name is the result of the expression []? ... :printf($X,PHP) (which is the number 33).
But that interesting functionality has a caveat: only accepts strings (duh!).

This causes a Fatal error: Function name must be a string, because 33 is an int.


Thanks to Shieru Asakoto for saving me 1 byte!

Ismael Miguel

Posted 2018-03-21T04:32:46.937

Reputation: 6 797

1[] is shorter than '0' and also evaluated differently in JS and PHP, so maybe a -1 byte here? – Shieru Asakoto – 2018-10-12T09:36:21.900

I have plenty of questions with that issue, where [] needs to be used instead of '0', '\0', '\0'=="0", and used that [] before as well. But thank you for spotting this question. – Ismael Miguel – 2018-10-12T10:19:14.767

2

Perl 5 and Perl 6, 55 bytes

say('This program errors out in Perl ',5-~-1,' :P').a/0

Try Perl 5 online! (Illegal division by zero)

Try Perl 6 online! (No such method)

Prefix ~ is stringification in Perl 6 and essentially a no-op in the program above. In Perl 5, it's bitwise not, converting -1 to 0.

. is method call syntax in Perl 6 and concatenation in Perl 5.

nwellnhof

Posted 2018-03-21T04:32:46.937

Reputation: 10 037

2

Java and C# 242 235

/**\u002f/*/using System;/**/class G{public static void/**\u002fmain/*/Main/**/(String[]a){String s="This program errors out in ";/**\u002fSystem.out.print(s+"Java :P");/*/Console.Write(s+"C# :P")/**/;s=/**\u002f(1/0)+""/*/a[-1]/**/;}}

Abusing different escape handling between java and C# (unicode escapes are parsed before code parsing in java and not in c#) as a sort of preprocessor, thats the job of the \u0027 magic, rest are some "toggle-comments"

Edit: Golfed off 8 bytes thanks to a pointer of @KevinCruijssen

Edit: Rule derp fixed

masterX244

Posted 2018-03-21T04:32:46.937

Reputation: 3 942

You can golf 6 bytes by changing both String in var (Java 10 supports this). (Or 5 by changing String s="..."; to String s="...",x; and remove String in front of x= in Java 9 or before). – Kevin Cruijssen – 2018-03-23T09:35:31.927

1reusing the S-string works, too for java99 and before. @KevinCruijssen – masterX244 – 2018-03-23T17:54:49.863

2

Python and Lua, 111 110 102 98 95 85 bytes

x="This program errors out in ",#[[
print(x[0]+"Python :P")
a#]]z=#print(x.."Lua :P")

Errors: Python 3:

Traceback (most recent call last):
  File ".code.tio", line 3, in <module>
    a#]]z=#print(x.."Lua :P")
NameError: name 'a' is not defined

Lua:

lua: .code.tio:3: attempt to get length of a nil value
stack traceback:
    .code.tio:3: in main chunk
    [C]: in ?

Clearly distinct.

Abuses multiple differences:

  • <var>=<a>,<b>,... creates a tuple in Python, but in Lua it creates an argument list, from which only the first member is taken.
  • # starts a comment in Python, but is the length operator in Lua. Extra props to Python for allowing tuples to end in a comma.
  • [[...]] is Lua's multiline string syntax, meaning it doesn't even see Python's print function; this is necessary due to Lua using .. for string concatenation and not +.
  • Python errors after seeing a, an undefined variable; Lua after z=#print(x.."Lua :P"). Using just #print(x.."Lua :P") for Lua doesn't work, as that raises an error before the code is even executed.

Edits:

  • No need to use "".join in Python, -1 byte
  • Make x a string in both languages and place Python in a string literal in the print function, -8 bytes
  • Using #[[]] is shorter than #"" and --[[]], -4 bytes
  • No need to use #1 as a table key, -3 bytes
  • Jo King did this, -9 bytes
  • Taking the length of the return value of print(x.."Lua :P") works, apparently; -1 byte

ivzem

Posted 2018-03-21T04:32:46.937

Reputation: 1 129

186 bytes – Jo King – 2018-03-21T23:36:58.543

2

AutoHotKey / C#, 155 133 128 122 bytes

Syntax highlighting explains it better than I could:

C# RuntimeBinderException: 'Cannot invoke a non-delegate type'

;dynamic
i="This program errors out in " ;Console.Write(i+"c# :P");i();/*
i:=SubStr(i,2,27)
send %i%AutoHotkey :P
Throw */

AutoHotkey Error: An exception was thrown.

;dynamic
i="This program errors out in " ;Console.Write(i+"c# :P");i();/*
i:=SubStr(i,2,27)
send %i%AutoHotkey :P
Throw */

Edits:

  1. removed a var
  2. -5 bytes thanks to milk

nelsontruran

Posted 2018-03-21T04:32:46.937

Reputation: 241

2Here's a slightly shorter exception to throw in C#: i+=i[-1]. System.IndexOutOfRangeException: 'Index was outside the bounds of the array.' – milk – 2018-03-22T02:00:42.677

2Slightly shorter still to use dynamic instead of var and throw Microsoft.CSharp.RuntimeBinder.RuntimeBinderException: 'Cannot invoke a non-delegate type' with i(). – milk – 2018-03-22T02:08:27.340

2

C (gcc)/Stax, 109 bytes

AA=~1;
	char* s;main(){*(int*)(printf("%s C :P",s))=0;}char* s=
"This program errors out in";;;/*dp`UGYC\`Q*/

Try it online! (C (gcc))

Try it online! (Stax) or Run and debug it! (Stax)

Segfault in C. Invalid operation in Stax. I love how everything that is not a comment is actually used in Stax.

C

This is how C sees it. The first line is no-op. The second line prints the message with printf and then segfaults due to the =0.

AA=~1;
	char* s;main(){*(int*)(printf("%s C :P\n",s))=0;}char* s=
"This program errors out in";;;/*dp`UGYC\`Q*/

Stax

Stax program terminates whenever it tries to pop or peek from empty stack. This makes it a little bit tricky and we have to prepare a stack that is not empty. AA=~1; does this while remaining a valid statement in C.

AA=~1;
AA=       10=10, returns a 1
   ~      Put it on the input stack
    1     Pushes a 1 to main stack (*)
     ;    Peek from the input stack (**)

What is really useful is the ~, it prepares a non-empty input stack so that the ; can be executed without exiting the program. However, the two 1s on the main stack are also used later.

The second line begins with a tab and starts a line comment in Stax.

"...";;;/*dp`UGYC\`Q*/
"..."                     "This program errors out in"
     ;;;                  Peek the stack three times so that we have enough operands for the next two operations
        /                 Divide, this consumes one element of the main stack
         *                Multiply, this consumes another element
          d               Discard the result, now the TOS is the string
           p              Pop and print without newline
            `UGYC\`       Compressed string literal for " Stax :P"
                   Q      Print and keep the string as TOS
                    *     Duplicate string specific times
                          Since the element under the top of stack is `1` that was prepared in (**), this does nothing
                     /    Invalid operation error

The invalid operation is trying to perform / operation for a string as the TOS (2nd operand) and the number 1 from (*) as the 1st operand, which is invalid.

If the two operands are swapped, it would be a valid operation in Stax.

Weijun Zhou

Posted 2018-03-21T04:32:46.937

Reputation: 3 396

2

Jelly and M, 39 bytes

İ=`ị“¢³ƥ“Ȥ¹»;“ :P”“¢ḅñ⁵ẹḞŀẊịñṙȧṄɱ»;ȮṠṛƓ

Try it in Jelly!

Try it in M!

Both languages apply inverse İ to 0 which results in inf for Jelly and zoo for M. I don't know why zoo represents infinity in M. Ask Dennis.

The important difference is that Jelly's infinity is equal to itself while M's infinity is not. Thus the "is equal to itself" monad =` yields 1 in Jelly and 0 in M. From here:

İ=`ị“¢³ƥ“Ȥ¹»;“ :P”“¢ḅñ⁵ẹḞŀẊịñṙȧṄɱ»;ȮṠṛƓ
İ=`                                      0 in M, 1 in Jelly
    “¢³ƥ“Ȥ¹»                             Pair of compressed strings: [' M',' Jelly']
   ị                                     Index into this list with 0 or 1
            ;“ :P”                       Concatenate with the string ' :P'
                  “¢ḅñ⁵ẹḞŀẊịñṙȧṄɱ»       Compressed string: 'This program errors in'
                                  ;      Prepend this to ' Jelly/M :P'
                                   Ȯ     Print the string and return it
                                    Ṡ    Sign. M errors with a string as input and terminates
                                         Jelly returns a list of Nones
                                     ṛ   Right argument. This prevents the list of Nones from being printed
                                      Ɠ  Read a single line from input. Since input is not allowed, this produces an EOFError

Jelly's error is EOFError: EOF when reading a line.

M's error is TypeError: '>' not supported between instances of 'str' and 'int'.

dylnan

Posted 2018-03-21T04:32:46.937

Reputation: 4 993

1How do you even begin to do this in two esolangs? – Magic Octopus Urn – 2018-10-22T14:55:57.893

1

Perl 5 and C, 95 bytes

//;$_='
main(){puts(puts("This program errors out in C :P"));}//';/T.*n /;print$&,"perl :P";die

//; is basically a NOP in perl, and is a comment in C.

So the C program is effectively:

main(){puts(puts("This program errors out in C :P"));}

Which prints the required string, then tries to run puts(32). This is technically undefined behavior in C, but it causes a segmentation fault on TIO and every system I have access to.

The perl program treats the whole C program as a string, uses the regex /T.*n / to match This program errors out in and then prints that and perl :P. die causes the program to crash with the error Died at script_name line 2.

If you don't like that as an error, 1/0 is the same length and crashes with an Illegal division by zero error. I just like die more ;)

Try it online! (C)

Try it online! (Perl)

Chris

Posted 2018-03-21T04:32:46.937

Reputation: 1 313

1

VBScript, JScript, 72 bytes

x="VB"
'';x='J'
WScript.echo("This program errors out in "+x+"Script")
y

VBScript will print "Microsoft VBScript runtime error: Type mismatch: 'y'"
JScript will print "Microsoft JScript runtime error: 'y' is undefined"

peter ferrie

Posted 2018-03-21T04:32:46.937

Reputation: 804

1

Java (JDK)/JavaScript (Node.js), 154 bytes

class P{P(){var s="This program errors out in ";try{System.out.printf("%sJava :P",s);}finally{if(1!='1'){var a=0/0;}throw new Error(s+"JavaScript :P");}}}

Try it online! (Java)

Try it online! (JavaScript)

Output in Java:

This program errors out in Java :P
Exception in thread "main" java.lang.ArithmeticException: / by zero
    at P.(Main.java:1)

Output in JavaScript (to stderr):

Error: This program errors out in JavaScript :P
    at P (/home/runner/.code.tio:1:185)

This takes advantage of JavaScript's weak typing (1=='1') to detect the language, and the same keywords in Java and JavaScript (var,class), and the similar error constructors (new Error()) to make the polyglot.

Logern

Posted 2018-03-21T04:32:46.937

Reputation: 845

1

JavaScript & Python 3, 105 91 bytes

Errors by NameError: name 'console' is not defined in Python 3

a="This program errors out in %s :P"
1//2;print(a%"Python 3")
console.log(a,"JavaScript")()

Try it online!

... and by TypeError: console.log(...) is not a function in JavaScript.

a="This program errors out in %s :P"
1//2;print(a%"Python 3")
console.log(a,"JavaScript")()

Try it online!

Shieru Asakoto

Posted 2018-03-21T04:32:46.937

Reputation: 4 445

1

PowerShell v6 and PowerShell v2, 73 bytes

"This errors out in PowerShell v$($PSVersionTable.PSVersion) :P"
1-shl1/0

Try it online!

This will throw a parsing error on v2 because -shl was introduced in v3. v3+ will then be able to correctly shift the value before attempting to divide it by 0, conveniently throwing a division-by-zero error. Both versions have the $PSVersionTable hashmap which contains the PSVersion field

Veskah

Posted 2018-03-21T04:32:46.937

Reputation: 3 580

0

C(gcc) on Linux/C(gcc) on Mac (160)

#include <sys/utsname.h>
main(){struct utsname n;float g;uname(&n);printf("This program errors out in C(gcc) on %s :P\n",n.sysname);g=1/(int)gamma(1);abort();}

Untested on Mac; basically, John Cook pointed out (in his blog) that POSIX doesn't define gamma; Linux uses the log of the gamma function (log(gamma(1)) will return 0 which will trigger a floating point exception); OSX uses the "true" gamma function, (which is officially called tgamma per POSIX); this returns 1 which will then hit the abort statement; I tried to get it to throw a different floating point error (e.g. sqrt(-1) but I'm forgetting how to make that throw an error vs just return zero)

Foon

Posted 2018-03-21T04:32:46.937

Reputation: 201

0

Perl, Bash (78 bytes)

printf "This program errors out in ";eval 'echo Bash :P'||print"Perl :P
";
a()

Output in Perl:

This program errors out in Perl :P
Undefined subroutine &main::a called at /tmp/perlbash line 3.

Output in Bash:

This program errors out in Bash :P
/tmp/perlbash: line 4: syntax error: unexpected end of file

(Note that Bash is indeed displaying the line 4 error, despite the fact that line 3 does not end with a line feed...)

Daniel Schepler

Posted 2018-03-21T04:32:46.937

Reputation: 1 001

0

C and ECPP, 112 bytes

#ifdef ECPP
#replace "C" "ECPP"
#endif
main(){puts("This program errors out in " "C" " :P");raise(strlen("C"));}

MD XF

Posted 2018-03-21T04:32:46.937

Reputation: 11 605

0

C (gcc) and Haskell, 135 bytes

char/*x=0-- */*
s="This program errors out in ";
int main(){--s;*s=printf("%sC :P",s+1);}//-}=0;main=mapM print[s++"Haskell :P",tail""]

Try it online (С)! Try it online (Haskell)!

The result is achieved by interweaving the comments, the C version being essentially this:

char * s = "This program errors out in ";
int main ()
{
   --s;
   *s = printf ("%sC :P", s + 1);
}

(Failure is achieved by writing before the beginning of the string).

Haskell version, on the other hand, reduces to the following:

char /* x = 0 -- a useless operator (/*) taking two arguments
s = "This program errors out in ";
int main () = 0 -- a useless function int taking two arguments
main = mapM print [s ++ "Haskell :P", tail ""]

(Failure is achieved by taking tail of an empty list)

Max Yekhlakov

Posted 2018-03-21T04:32:46.937

Reputation: 601

0

Ruby / Erlang, 150 115 bytes

%w();puts r=<<X[/T.*n /]+"Ruby :P";r*=-1
main([])->io:fwrite("This program errors out in Erlang :P
"),X=1/0,Y=
X
.%

Try it online:

Ruby

Erlang (escrpit)

What's happening here?

Erlang was quite easy, it's just printing out a string then performing a division by zero.

The % sign starts a single line comment in Erlang, so I could use that to mark Ruby code, by creating some nop and then appending valid code.

Ruby has to skip all the Erlang code, so I used the here-document syntax to read it all into a string. The delimiter is a valid variable name in Erlang, so that's no problem. Then I multiply the string by -1, which is an invalid argument and outputs the error message.

The last line marks the end of the Erlang function, and does not look too bad to the Ruby interpreter, which gets an error before having to interpret that anyway.

G B

Posted 2018-03-21T04:32:46.937

Reputation: 11 099

0

05AB1E + Groovy, 80 75 79 bytes (99 bytes UTF-8)

//“€Œ‚ë›í€Ä€† 05AB1E :P“=}q
1/{println'this program errors out in Groovy :P'}()

Try it online (05AB1E)!

Try it online (Groovy)!


Results for 05AB1E:

Output: this program errors out in 05AB1E :P

Error:

** (FunctionClauseError) no function clause matching in Interp.Stack.pop/2    

    The following arguments were given to Interp.Stack.pop/2:

        # 1
        :end

        # 2
        "}"

    (osabie) lib/interp/stack.ex:12: Interp.Stack.pop/2
    (osabie) lib/osabie.ex:63: Osabie.CLI.main/1
    (elixir) lib/kernel/cli.ex:105: anonymous fn/3 in Kernel.CLI.exec_fun/2

Real time: 0.373 s
User time: 0.316 s
Sys. time: 0.114 s
CPU share: 115.03 %
Exit code: 1

This occurs do to a mismatched }, it never runs the Groovy part because of q.


Results for Groovy: - Note, I updated the code but not the TIO links.

Output: this program errors out in Groovy :P

Error:

groovy.lang.GroovyRuntimeException: Ambiguous method overloading for method java.lang.Integer#div.
Cannot resolve which method to invoke for [null] due to overlapping prototypes between:
    [class java.lang.Character]
    [class java.lang.Number]
    at Script1.run(Script1.groovy:3)
    at io.grpc.Context.run(Context.java:565)

By calling 1/null as println returns nothing.

Magic Octopus Urn

Posted 2018-03-21T04:32:46.937

Reputation: 19 422

0

Swift 4/JavaScript (SpiderMonkey), 105 bytes

print("This program errors out in " + ([1]==[1] ?"Swift :P":"JavaScript :P"))
var b=Int.self,a=[1]
a[2]=0

Try it online! (Swift)

Try it online! (JavaScript)

Output in Swift:

This program errors out in Swift :P
Fatal error: Index out of range
Output in JavaScript:
This program errors out in JavaScript :P
.code.tio:2:5 ReferenceError: Int is not defined

This also uses JavaScript's type system to tell the difference between the two languages.

Logern

Posted 2018-03-21T04:32:46.937

Reputation: 845

0

Ink and Haskell, 104 bytes

--This program errors out in ink :P->->
main=mapM putStr["This program errors out in Haskell :P",tail""]

Try it online! (Ink, Haskell)

In ink, the first line gets literally printed except for the -- at the start, until it encounters the ->->, which means "divert back to where you entered from", and is an error here since we didn't enter from anywhere. The second line is never reached.

In haskell, the first line is a comment. The second line prints the string in question, then tries (and fails) to discard the first element of an empty list.

More interesting variant, 110 bytes

--T<>
h
 ~temp a="is program errors out in "
-- <>{a}ink :P->a
main=mapM putStr["Th",h()0,"Haskell :P",tail""]

Try it online! (Ink, Haskell)

In Haskell, if we ignore the comments, we're left with a function h which takes two parameters (matching lazily due to the ~) and returning most of the string we want to print. Then main prints the beginning of the string, then the part described be h, then the end, and then fails by trying to discard the first character of an empty string.

h ~temp a="is program errors out in "
main=mapM putStr["Th",h()0,"Haskell :P",tail""]

In ink, the T and h get printed, the third line defines a variable containing most of the string, then the fourth line prints that, then the very end of the string, then fails because it tries to divert to a variable that contains a number rather than a valid divert target.

Th
~temp a="is program errors out in "
<>{a}ink :P->a

Sara J

Posted 2018-03-21T04:32:46.937

Reputation: 2 576

0

Rust / Python 2, 128 126 124 123 bytes

#[cold]fn main(){panic!(print!("This program errors out in Rust :P"))}/*
print"This program errors out in Python 2 :P";k#*/

Try it online: Rust, Python

More interesting variant, 124 bytes

#[cold]fn main(){panic!(print!(/*
r="Python 2";print str.format(#*/
"This program errors out in {} :P",r#"Rust"#))}/*
);k#*/

Try it online: Rust, Python

Rust

Rust sees this:

#[cold]fn main(){panic!(print!(
"This program errors out in {} :P",r#"Rust"#))}
  • A harmless attribute is applied to main.
  • Unusual string literal syntax is used.
  • Error:

    thread 'main' panicked at 'Box<Any>', code.tio:1:18
    note: Run with `RUST_BACKTRACE=1` environment variable to display a backtrace.
    

Python

Python sees this:

r="Python 2";print str.format(
"This program errors out in {} :P",r
);k

Error:

Traceback (most recent call last):
  File ".code.tio", line 4, in <module>
    );k#*/
NameError: name 'k' is not defined

Potential improvements I don't want to make

  • (-2) The 2 in Python 2 is technically not required by the rules
  • (-1) Use #[doc] instead of #[cold] - this generates a soft error -- a warning that'll become an error in the future.

NieDzejkob

Posted 2018-03-21T04:32:46.937

Reputation: 4 630