Hello
Very basic
puts 'Hello, world!'String concatenation
puts 'Hello, ' + 'world!'With variables
var hi = 'Hello, '
var world = 'world!'
puts hi + worldLast updated
Was this helpful?
Very basic
puts 'Hello, world!'String concatenation
puts 'Hello, ' + 'world!'With variables
var hi = 'Hello, '
var world = 'world!'
puts hi + worldLast updated
Was this helpful?
Was this helpful?