ruby-x.github.io/app/views/slides/minsk/_what.haml

54 lines
920 B
Plaintext
Raw Normal View History

2020-01-30 13:58:23 +01:00
%section#working1
%h2
Currenty working
%small (overview)
%p basic oo (classes/ objects)
2020-02-07 10:07:01 +01:00
%p memory layout
%p calling convention
%p binary creation
%section#control
%h3 control structures
%p if / else / until
%p while
%p complex conditions
%p no break / continue (easy)
2020-01-30 13:58:23 +01:00
%section#vars
%h3 variables +
%h3 assignment
%ul
%li local /arg
%li ivar
%li implicit return
%section#static
%h2 static calling
%p argument passing
%p constants
%p local / ivar
%p calls
%section#dynamic
%h2 dynamic sending
%p as static, plus
2020-02-07 10:07:01 +01:00
%p method resolution
%p caching
2020-01-30 13:58:23 +01:00
%section#lambdas
%h3 Lambdas
%p implicit capture and compilation
%p block passing as argument
%p yield with arguments
%p return (lambda style)
%section#not
%h2 Not working
2020-02-07 10:07:01 +01:00
%p global variables
%p multi assignment
2020-01-30 13:58:23 +01:00
%p exceptions
2020-02-07 10:07:01 +01:00
%p procs / binding
2020-01-30 13:58:23 +01:00
%p stdlib
2020-02-07 10:07:01 +01:00
%p eval
2020-01-30 13:58:23 +01:00
%p . . . . . .