LoginSignup
15
9

More than 5 years have passed since last update.

金は愛よりも重いし地獄の沙汰も金次第

Posted at

ああ無情なりや

package main

import "fmt"

func main() {
    fmt.Println(string('生' & '死')) //=>> '愛'
    fmt.Println('金' > '愛') //=> true
    fmt.Println('金' > ('生' & '死')) //=> true
}

see also

15
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
15
9