github.com/NeowayLabs/nash@v0.2.2-0.20200127205349-a227041ffd50/docs/stdlib/fmt.md (about)

     1  <!-- mdtocstart -->
     2  
     3  # Table of Contents
     4  
     5  - [fmt](#fmt)
     6      - [fmt_println](#fmtprintln)
     7  
     8  <!-- mdtocend -->
     9  
    10  # fmt
    11  
    12  ## fmt_println
    13  
    14  Same behavior as print but adds a newline on the end.
    15  
    16  ```nash
    17  import fmt
    18  
    19  fmt_println("hi")
    20  #Output:"hi\n"
    21  ```