784
Exam Answer (programming.dev)
you are viewing a single comment's thread
view the rest of the comments
[-] paholg@lemm.ee 21 points 3 months ago

Works even better in Ruby, as the code as given is valid, you just need to monkey patch length:

#!/usr/bin/env ruby

module DayLength
  def length
    if ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"].include? self
      "24 hours"
    else
      super
    end
  end
end

class String
  prepend DayLength
end

day = "Monday"

x = day.length

print(x)
[-] silasmariner@programming.dev 5 points 3 months ago* (last edited 3 months ago)

Code as given can be made valid in scala I believe. My starter was based on that assumption. I think raku can do it too, but you would probably have to \x = $ to make it work...

Edit: misread your comment slightly, CBA to change mine now. It is what it is

this post was submitted on 24 Mar 2024
784 points (98.6% liked)

Programmer Humor

18388 readers
287 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 1 year ago
MODERATORS