Skip to main content
deleted 26 characters in body
Source Link
user85052
user85052

Keg, 2121 19 bytes (1919 17 characters)

abc#( 1abc#1 / ╘ " a b c

Try it online!Try it online!

Simply prints abc and the rest is a comment.

Fails in MathGolf due to an undefined operator overload of /. / can not work on an integer (1) and a string( pushed via the space instruction.)

MathGolf

ac(1ac1/╘"abc

Try it online!Try it online!

Does a bunch of nonsense, then deletes the whole stack. "abc printspushes abc and the stack has an implicit output.

Fails in Keg due to the failure of implicit-outputting a floating-point number in its character form.

Keg, 21 bytes (19 characters)

abc#( 1 / ╘ " a b c

Try it online!

Simply prints abc and the rest is a comment.

Fails in MathGolf due to an undefined operator overload of /. / can not work on an integer (1) and a string( pushed via the space instruction.)

MathGolf

ac(1/╘"abc

Try it online!

Does a bunch of nonsense, then deletes the whole stack. "abc prints abc.

Fails in Keg due to the failure of implicit-outputting a floating-point number in its character form.

Keg, 21 19 bytes (19 17 characters)

abc#1 / ╘ " a b c

Try it online!

Simply prints abc and the rest is a comment.

Fails in MathGolf due to an undefined operator overload of /. / can not work on an integer (1) and a string( pushed via the space instruction.)

MathGolf

ac1/╘"abc

Try it online!

Does a bunch of nonsense, then deletes the whole stack. "abc pushes abc and the stack has an implicit output.

Fails in Keg due to the failure of implicit-outputting a floating-point number in its character form.

Better explanation
Source Link
user85052
user85052

Keg, 21 bytes (19 characters)

abc#( 1 / ╘ " a b c

Try it online!

Simply prints abc and the rest is a comment.

Fails in MathGolf due to improper usean undefined operator overload of /. / can not work on an integer (1) and a string( pushed via the space instruction.)

MathGolf

ac(1/╘"abc

Try it online!

Does a bunch of nonsense, then deletes the whole stack. "abc prints abc.

Fails in Keg due to TypeError: integer argument expected, got floatthe failure of implicit-outputting a floating-point number in its character form.

Keg, 21 bytes (19 characters)

abc#( 1 / ╘ " a b c

Try it online!

Simply prints abc and the rest is a comment.

Fails in MathGolf due to improper use of /.

MathGolf

ac(1/╘"abc

Try it online!

Does a bunch of nonsense, then deletes the whole stack. "abc prints abc.

Fails in Keg due to TypeError: integer argument expected, got float

Keg, 21 bytes (19 characters)

abc#( 1 / ╘ " a b c

Try it online!

Simply prints abc and the rest is a comment.

Fails in MathGolf due to an undefined operator overload of /. / can not work on an integer (1) and a string( pushed via the space instruction.)

MathGolf

ac(1/╘"abc

Try it online!

Does a bunch of nonsense, then deletes the whole stack. "abc prints abc.

Fails in Keg due to the failure of implicit-outputting a floating-point number in its character form.

Post Undeleted by 79037662
added 148 characters in body
Source Link
79037662
  • 3k
  • 12
  • 22

Keg, 2321 bytes (19 characters)

abc#( 1 / 0 ╘ " a b c

Try it online!Try it online!

Simply prints abc and the rest is a comment.

Fails in MathGolf due to improper use of /.

MathGolf

ac(1/0╘"abc╘"abc

Try it online!Try it online!

Does a bunch of nonsense, then deletes the whole stack. "abc prints abc.

Fails in Keg due to TypeError: integer argument expected, got float

Keg, 23 bytes

abc#( 1 / 0 ╘ " a b c

Try it online!

Fails in MathGolf due to improper use of /

MathGolf

ac(1/0╘"abc

Try it online!

Fails in Keg due to TypeError: integer argument expected, got float

Keg, 21 bytes (19 characters)

abc#( 1 / ╘ " a b c

Try it online!

Simply prints abc and the rest is a comment.

Fails in MathGolf due to improper use of /.

MathGolf

ac(1/╘"abc

Try it online!

Does a bunch of nonsense, then deletes the whole stack. "abc prints abc.

Fails in Keg due to TypeError: integer argument expected, got float

Post Deleted by 79037662
Source Link
79037662
  • 3k
  • 12
  • 22
Loading