README.md in qlang-0.0.27180000 vs README.md in qlang-0.0.27182000

- old
+ new

@@ -58,29 +58,62 @@ ``` ## How to use -Install it yourself as: +Install qlang gme. $ gem install qlang + + +## Use as native language -### Compiler into R +### Compile into R - $ qlang -c -R foo.q + $ qlang -R foo.q -### Compiler into Ruby +### Compile into Ruby - $ qlang -c -Ruby foo.q + $ qlang -Ruby foo.q + +### Compile into Python -### Interpreter + $ qlang -Python foo.q - $ qlang -i +## Use as math template within other langs + +```rb +class ExampleClass + def example_method + #your Ruby codes + ...... + +I love mathematics. + a = (1 3 4) + # your Q codes +Q.E.D + + end +end +``` + + $ qlang -Ruby example.rb + + +```rb +class ExampleClass + def example_method + #your Ruby codes + ...... + + a = Vector[1, 3, 4] + + end +end +``` + ## Contributing -1. Fork it ( https://github.com/gogotanaka/Q/fork ) -2. Create your feature branch (`git checkout -b my-new-feature`) -3. Commit your changes (`git commit -am 'Add some feature'`) -4. Push to the branch (`git push origin my-new-feature`) -5. Create a new Pull Request +Welcome any your PR or issue. +You can become commiter, if you commit even once.