My second post, with code examples
21 February 2021
Here's some Ruby code:
def hey_there
puts 'Hey there'
end
And, here's some JavaScript code:
const hello() => {
console.log('Hello')
}
21 February 2021
Here's some Ruby code:
def hey_there
puts 'Hey there'
end
And, here's some JavaScript code:
const hello() => {
console.log('Hello')
}