GNU Octave is a high-level interpreted language, primarily intended for numerical computations.
(via GNU Octave)
Hint: I also mad an octave docset for Dash: https://github.com/obstschale/octave-docset
| #include <stdio.h> | |
| int main() { | |
| int a, n; | |
| int i; | |
| int rezultat = 1; | |
| printf("Unesite broj a: \n"); | |
| scanf("%d", &a); | |
| printf("Unesite stepen: \n"); | |
| scanf("%d", &n); |
| # taken from here: http://web.archive.org/web/20110527163743/https://svn.enthought.com/enthought/browser/sandbox/docs/coding_standard.py | |
| """ This module is an example of the Enthought Python coding standards. | |
| It was adapted from the Python Enhancement Proposal 8 (aka PEP 8) titled | |
| 'Style Guide for Python Code' (http://www.python.org/peps/pep-0008.html). | |
| The first item in a module must be a documentation string (docstring). The | |
| first line of the docstring should be a one line summary. If a more | |
| detailed description is required, put an empty line before it. |
GNU Octave is a high-level interpreted language, primarily intended for numerical computations.
(via GNU Octave)
Hint: I also mad an octave docset for Dash: https://github.com/obstschale/octave-docset