またまたタイミング遅れなせいで大方の言語は出尽くした感があったんだけど、まだ誰もやってない言語があったので、やってみた。 ゆの in language ! ! X / _ / X < :来週も見てくださいね! ! module yuno logical :: X = .true. interface operator(/) module procedure f1, f2 end interface interface operator(<) module procedure f3 end interface contains logical function f1(a, b) logical, intent(in) :: a, b f1 = .true. end function logical function f2(a, b) logical, intent(in) :: a char