repo.or.cz
/
org-mode.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Merge branch 'maint'
[org-mode.git]
/
testing
/
examples
/
babel-dangerous.org
blob
ad8f6acea919cd60177a8afadc238fef51636e19
1
#+Title: dangerous code block examples which should be isolated
2
#+OPTIONS: ^:nil
3
4
* no default value for vars
5
:PROPERTIES:
6
:ID: f2df5ba6-75fa-4e6b-8441-65ed84963627
7
:END:
8
9
There is no default value assigned to =x= variable. This is not permitted
10
anymore.
11
12
#+name: carre
13
#+begin_src python :var x
14
return x*x
15
#+end_src