gioui.org/ui@v0.0.0-20190926171558-ce74bc0cbaea/app/log_ios.m (about)

     1  // SPDX-License-Identifier: Unlicense OR MIT
     2  
     3  // +build darwin,ios
     4  
     5  @import Foundation;
     6  
     7  #include "log_ios.h"
     8  
     9  void nslog(char *str) {
    10  	NSLog(@"%@", @(str));
    11  }