Ruby Cheat Sheet
puts
ruby
puts 's'
python
print('s')
javascript
console.log("s");
go
s := "s" fmt.Println(s)
rust