Help for this page

Select Code to Download


  1. or download this
    "foo" ~ "bar"   # >>> "foobar"
    5 ~ 09          # >>> "59"
    ~1e3            # >>> "1000"
    "ja" ~| "  ph"  # >>> "japh"
    
  2. or download this
    "foo" . "bar"   # >>> "foobar"
    5 . 09          # >>> "59"
    .1e3            # >>> "1000"
    "ja" .| "  ph"  # >>> "japh"