Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,053 for Hello$ (0.19 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/idl/groovy/src/main/idl/hello.idl

    The generated files have the same name as the idl file, with the extension replaced by '.h' or '.c'.
    
    HEADER <<<
    void hello();
    >>>
    --------------
    SOURCE <<<
    #include <stdio.h>
    #include "hello.h"
    
    void hello () {
      printf("Hello from generated source!!\n");
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 496 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/cpp-lib/groovy/src/main/cpp/hello.cpp

    #include <iostream>
    #include "hello.h"
    
    void LIB_FUNC hello () {
      std::cout << "Hello, World!\n";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 101 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/multiproject/basic-multiproject/groovy/app/src/main/java/com/example/Hello.java

    package com.example;
    
    public class Hello {
        public static void main(String[] args) {
            System.out.println("Hello, world!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 141 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/mavenMigration/ant/tests/hello.out

    > Task :sayHello
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 35 bytes
    - Viewed (0)
  5. src/debug/pe/testdata/hello.c

    #include <stdio.h>
    
    int
    main(void)
    {
    	printf("hello, world\n");
    	return 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 77 bytes
    - Viewed (0)
  6. src/internal/xcoff/testdata/hello.c

    #include <stdio.h>
    
    void
    main(int argc, char *argv[])
    {
    	printf("hello, world\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 10 18:52:31 UTC 2018
    - 85 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/custom-layout/groovy/src/include/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/windows-resources/groovy/src/hello/headers/hello.h

    #if defined(_WIN32) && defined(DLL_EXPORT)
    #define LIB_FUNC __declspec(dllexport)
    #else
    #define LIB_FUNC
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/git/hello.txt

    env GIT_COMMITTER_EMAIL='******@****.***'
    
    git init
    
    at 2017-09-21T21:05:58-04:00
    git add hello.go
    git commit -a -m 'hello'
    git branch -m master
    
    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    fc3a09f (HEAD -> master) hello
    -- hello.go --
    package main
    
    func main() {
    	println("hello, world")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 412 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/fossil/hello.txt

    fossil init --date-override 2017-09-22T01:15:36Z hello.fossil
    fossil open --keep hello.fossil
    
    fossil add hello.go
    fossil commit --no-prompt --nosign --date-override 2017-09-22T01:19:07Z --comment 'hello world'
    
    fossil timeline --oneline
    cmp stdout .fossil-timeline
    
    -- .fossil-timeline --
    d4c7dcdc29 hello world
    58da0d15e9 initial empty check-in
    +++ no more data (2) +++
    -- hello.go --
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 470 bytes
    - Viewed (0)
Back to top