'use strict'classSale{constructor(price){;[this.decoratorsList,this.price]=[[], price]}decorate(decorator){if(!Sale[decorator])thrownewError(`decorator does not exist: ${decorator}`)this.decoratorsList.push(Sale[decorator])}staticasyncremotePrice(price){returnawait Promise.all([fetch(`/api/convert/${price}`)])}getPrice(){for(let decorator ofthis.decoratorsList){this.price =decorator(this.price)}returnthis.price.toFixed(2)}staticquebec(price){// this is a commentreturn price + price *7.5/100}staticfedtax(price){return price + price *5/100}}
from collections import deque
deftopo(G, ind=None, Q=[1]):if ind ==None:
ind =[0]*(len(G)+1)#this is a commentfor u in G:for v in G[u]:
ind[v]+=1
Q = deque()for i in G:if ind[i]==0:
Q.append(i)iflen(Q)==0:return
v = Q.popleft()print(v)for w in G[v]:
ind[w]-=1if ind[w]==0:
Q.append(w)
topo(G, ind, Q)
moduleExampleModuleclassExampleClass::ScopeResolution < NewScope::Operator
definitialize(options)@@class_var= options[:class]@instance_var= options[:instance]enddefmethod
puts 'doing stuff'yieldif block_given?
other_method(:arg)enddefself.class_methodreturn"I am a class method!"endprivatedefother_method(*args)
puts 'doing other stuff #{42}'enddefself.private[1,2,3].eachdo|item|
puts item
endend
private_class_method :privateendend
ExampleModule::ExampleClass::ScopeResolution
example_instance = ExampleModule::ExampleClass::ScopeResolution.new(:arg)
example_instance.method(:arg)do
puts 'yielding in block!'end
# Electron Highlighter Theme> Electron Highlighter Theme for Atom
# Installation1. Install [Atom](https://atom.io/)2. Launch Atom
3. Open **Preferences** > **Install**4. Search for `electron-highlighter-syntax`5. Click **Install** to install it
6. Preferences > Themes > Syntax Theme > **Electron Highlighter**- lists
- more stuff
- it's a list mkay