- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
<target name="test-boolean">
<condition property="if-true" value="true" else="false">
<!--
Попробуйте попереключайте true / false
и посмотрите на результат - вам однозначно понравится :)
-->
<istrue value="false"/>
</condition>
<antcall target="test-boolean-true"/>
<antcall target="test-boolean-false"/>
</target>
<target name="test-boolean-true" if="if-true">
<echo>The condition evaluates to "true"</echo>
</target>
<target name="test-boolean-false" unless="if-true">
<echo>The condition evaluates to "false"</echo>
</target>
Язык - Ant, для тех, кто не в курсе. Я думаю, можно спокойно зачислить в говноязыки.
guest 18.02.2010 09:37 # 0
nil 18.02.2010 13:41 # +0.2
wvxvw 18.02.2010 12:02 # 0
guest 18.02.2010 20:14 # 0
wvxvw 18.02.2010 20:34 # −1
Википедия по этому поводу говорит вот что:
[quote]A programming language is an artificial language designed to express computations that can be performed by a machine, particularly a computer. Programming languages can be used to create programs that control the behavior of a machine, to express algorithms precisely, or as a mode of human communication.[/quote]
В том числе, википедия относит и языки разметки к языкам программирования. Конечно, вы тоже можете с этим не соглашаться - но не нужно быть таким категоричным ;)