Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. def rysuj(a, b)
  2. plt = File.open("wykres.plt", "w")
  3. while a <= b do
  4. pom = self.value(a)
  5. plt.write("#{a} #{pom} \n")
  6. a += 1/100
  7. end
  8. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement