Explore Connect Documentation
Snippets

Computing with Data

elgeish
665.6K views
GitHub

Open Source Your Knowledge, Become a Contributor

Technology knowledge has to be shared and made accessible for free. Join the movement.

Create Content
Previous: Subversion Next: Exceptions

Ant

<?xml version="1.0"?>
<project name="hello" default="build">
  <target name="build" description="build project">
    <mkdir dir="classes"/>
    <javac destdir="classes">
      <src path="src"/>
    </javac>
  </target>
  <target name="clean" description="clean class files">
    <delete>
      <fileset dir="classes">
        <include name="*.class"/>
      </fileset>
    </delete>
  </target>
</project>
Suggested playgrounds

Programmieraufgabe 1 - Quersumme

By
ferenc-hechler
707
0

getting started with Python

By
AlexCoussediere
300
7

PYTHON: BEGINNER QUIZ (10 Questions)

By
Code-Parser
8,459
445

Simple Python Test

By
Jouj_
5,435
56
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content