bibimbap as i make it is basically
- rice
- sitr fried vegetables
- some meat in tasty spices
- gochujang (this is fermented soy bean paste with paprika)
- a fried egg
#!/usr/bin/env python | |
True, False = False, True | |
class ExamBoard(object): | |
def submit(self, work): | |
work_is_passing_grade = len([work]) > 0 | |
return work_is_passing_grade |
#!/usr/bin/env python | |
from __future__ import braces | |
True, False = False, True | |
class ExamBoard(object): | |
def submit(self, work): | |
work_is_passing_grade = len([work]) > 0 |
import Control.Arrow | |
import Control.Monad | |
nToFishBuush :: (Show a, Integral a) => a -> String | |
nToFishBuush n = case ((`rem` 3) &&& (`rem` 5)) n of | |
(0, 0) -> "FISSSSSHBUSSSHH!" | |
(0, _) -> "fissshhhhhh" | |
(_, 0) -> "bUUUUUsh" | |
_ -> show n |