Skip to content

Instantly share code, notes, and snippets.

View marceloreichert's full-sized avatar

Marcelo Reichert marceloreichert

View GitHub Profile
@marceloreichert
marceloreichert / hello_world.rb
Created November 13, 2018 21:06
Hello World Examples
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello !"
end
end
hello = HelloWorld.new("World")
import {Socket} from 'phoenix';
let elixir_engine_instance;
class Engine {
static get() {
return elixir_engine_instance;
}
constructor(credentials, url){