param 1

function () 
{ 
    return "This code is highlighted as Javascript!"
}
ls -lha
foo
npm run build
select p.cod_pess, p.nom_pess 
from pessoa p
where p.cod_pess = 118104
gem install github-linguist "string argument"
ls -lha
3docker run
4date
5shutdown -r now
6date

teste

bla adfapodiadpoiaopd iapodi padipaidopa dpoai dopa idapda

 3infinispan:
 4  a:
 5    name: "OK"
 6    x: 2
 7    qtde: 32
 8    - codi:
 9      value: 32    
10        

aasdoapdopad

asdadioaspdiadopi

199// GetTitleFunc returns a func that can be used to transform a string to
200// title case.
201//
202// The supported styles are
203//
204// - "Go" (strings.Title)
205// - "AP" (see https://www.apstylebook.com/)
206// - "Chicago" (see https://www.chicagomanualofstyle.org/home.html)
207//
208// If an unknown or empty style is provided, AP style is what you get.
209func GetTitleFunc(style string) func(s string) string {
210  switch strings.ToLower(style) {
211  case "go":
212    return strings.Title
213  case "chicago":
214    return transform.NewTitleConverter(transform.ChicagoStyle)
215  default:
216    return transform.NewTitleConverter(transform.APStyle)
217  }
218}