Skip to content
Snippets Groups Projects
Select Git revision
  • 68d977ba5ff82449bef0d9164e42957786011b2d
  • main default protected
  • rosification
  • refactoring
  • pp
  • mpc
  • realtimelogplotter
  • alv
  • gitlab_ci_podman
  • restructuring
  • viz_fix
11 results

path_in_pixels.csv

Blame
  • PrettyPrint.java 311 B
    /* 
     * Copyright (C) 2006  Anders Nilsson <anders.nilsson@cs.lth.se>
     *
     * This file is part of OntologyCompiler.
     */
    
    
    import AST.Start;
    
    public class PrettyPrint extends Parser {
    	public static void main(String args[]) {
    		Start ast = parse(args);
    
    		// Dump the AST
    		ast.prettyPrint("  ", System.out);
    	}
    }