R
Roedy Green
Sun used to always start off a Java program with a comment like this:
/*
* @(#)Bio.java
Now Oracle always starts off with a comment like this:
/*
* %W% %E%
*
* Copyright (c) 2006, Oracle and/or its affiliates. All rights
reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
I presume those mysterious symbols are commands to some version
control system.
Is there some recommended way for ordinary developers to begin
programs?
--
Roedy Green Canadian Mind Products
http://mindprod.com
Refactor early. If you procrastinate, you will have
even more code to adjust based on the faulty design.
..
/*
* @(#)Bio.java
Now Oracle always starts off with a comment like this:
/*
* %W% %E%
*
* Copyright (c) 2006, Oracle and/or its affiliates. All rights
reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
I presume those mysterious symbols are commands to some version
control system.
Is there some recommended way for ordinary developers to begin
programs?
--
Roedy Green Canadian Mind Products
http://mindprod.com
Refactor early. If you procrastinate, you will have
even more code to adjust based on the faulty design.
..